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