aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/cttz.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/PowerPC/cttz.ll')
-rw-r--r--test/CodeGen/PowerPC/cttz.ll13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGen/PowerPC/cttz.ll b/test/CodeGen/PowerPC/cttz.ll
deleted file mode 100644
index 1effc6fcd93a..000000000000
--- a/test/CodeGen/PowerPC/cttz.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; Make sure this testcase does not use ctpop
-; RUN: llc -verify-machineinstrs < %s -march=ppc32 -mcpu=g5 | FileCheck %s
-
-declare i32 @llvm.cttz.i32(i32, i1)
-
-define i32 @bar(i32 %x) {
-entry:
-; CHECK: @bar
-; CHECK: cntlzw
- %tmp.1 = call i32 @llvm.cttz.i32( i32 %x, i1 true ) ; <i32> [#uses=1]
- ret i32 %tmp.1
-}
-