summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/ctz.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/ctz.ll')
-rw-r--r--test/CodeGen/ARM/ctz.ll11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CodeGen/ARM/ctz.ll b/test/CodeGen/ARM/ctz.ll
deleted file mode 100644
index 2d88b0351cf3e..0000000000000
--- a/test/CodeGen/ARM/ctz.ll
+++ /dev/null
@@ -1,11 +0,0 @@
-; RUN: llc -mtriple=arm-eabi -mattr=+v6t2 %s -o - | FileCheck %s
-
-declare i32 @llvm.cttz.i32(i32, i1)
-
-define i32 @f1(i32 %a) {
-; CHECK-LABEL: f1:
-; CHECK: rbit
-; CHECK: clz
- %tmp = call i32 @llvm.cttz.i32( i32 %a, i1 true )
- ret i32 %tmp
-}