• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; Make sure this testcase does not use ctpop
2; RUN: llc < %s -march=ppc32 | grep -i cntlzw
3
4declare i32 @llvm.cttz.i32(i32)
5
6define i32 @bar(i32 %x) {
7entry:
8        %tmp.1 = call i32 @llvm.cttz.i32( i32 %x )              ; <i32> [#uses=1]
9        ret i32 %tmp.1
10}
11
12