When the scheduler unfold a load folding instruction it move some of the predecessors...
[oota-llvm.git] / test / CodeGen / Alpha / ctlz_e.ll
index d7dab23ea9a4aa09fa111bdc36756eb41fccf4f3..230e096b08d2be1867231512cf4894adf8449a38 100644 (file)
@@ -1,12 +1,11 @@
 ; Make sure this testcase does not use ctpop
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep -i 'ctpop' |wc -l |grep 0
+; RUN: llc < %s -march=alpha | not grep -i ctpop 
 
-declare ulong %llvm.ctlz(ulong)
+declare i64 @llvm.ctlz.i64(i64)
 
-implementation   ; Functions:
-
-ulong %bar(ulong %x) {
+define i64 @bar(i64 %x) {
 entry:
-       %tmp.1 = call ulong %llvm.ctlz( ulong %x ) 
-       ret ulong %tmp.1
+        %tmp.1 = call i64 @llvm.ctlz.i64( i64 %x )              ; <i64> [#uses=1]
+        ret i64 %tmp.1
 }
+