summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/bmi.ll
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-10-13 07:48:07 +0000
committerBill Wendling <isanbard@gmail.com>2011-10-13 07:48:07 +0000
commit1203fe7fc80d0fe16a30ae3ddb9b0823b17f39ce (patch)
treea35d0deb4c99fb5539919c2d3b1e661ba2f41c87 /test/CodeGen/X86/bmi.ll
parent82222c20be24adda7c218f3fdaf2e0ae049c955b (diff)
downloadllvm-1203fe7fc80d0fe16a30ae3ddb9b0823b17f39ce.tar.gz
llvm-1203fe7fc80d0fe16a30ae3ddb9b0823b17f39ce.tar.bz2
llvm-1203fe7fc80d0fe16a30ae3ddb9b0823b17f39ce.tar.xz
Revert r141854 because it was causing failures:
http://lab.llvm.org:8011/builders/llvm-x86_64-linux/builds/101 --- Reverse-merging r141854 into '.': U test/MC/Disassembler/X86/x86-32.txt U test/MC/Disassembler/X86/simple-tests.txt D test/CodeGen/X86/bmi.ll U lib/Target/X86/X86InstrInfo.td U lib/Target/X86/X86ISelLowering.cpp U lib/Target/X86/X86.td U lib/Target/X86/X86Subtarget.h git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141857 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/bmi.ll')
-rw-r--r--test/CodeGen/X86/bmi.ll38
1 files changed, 0 insertions, 38 deletions
diff --git a/test/CodeGen/X86/bmi.ll b/test/CodeGen/X86/bmi.ll
deleted file mode 100644
index 8817e22498..0000000000
--- a/test/CodeGen/X86/bmi.ll
+++ /dev/null
@@ -1,38 +0,0 @@
-; RUN: llc < %s -march=x86-64 -mattr=+bmi | FileCheck %s
-
-define i32 @t1(i32 %x) nounwind {
- %tmp = tail call i32 @llvm.cttz.i32( i32 %x )
- ret i32 %tmp
-; CHECK: t1:
-; CHECK: tzcntl
-}
-
-declare i32 @llvm.cttz.i32(i32) nounwind readnone
-
-define i16 @t2(i16 %x) nounwind {
- %tmp = tail call i16 @llvm.cttz.i16( i16 %x )
- ret i16 %tmp
-; CHECK: t2:
-; CHECK: tzcntw
-}
-
-declare i16 @llvm.cttz.i16(i16) nounwind readnone
-
-define i64 @t3(i64 %x) nounwind {
- %tmp = tail call i64 @llvm.cttz.i64( i64 %x )
- ret i64 %tmp
-; CHECK: t3:
-; CHECK: tzcntq
-}
-
-declare i64 @llvm.cttz.i64(i64) nounwind readnone
-
-define i8 @t4(i8 %x) nounwind {
- %tmp = tail call i8 @llvm.cttz.i8( i8 %x )
- ret i8 %tmp
-; CHECK: t4:
-; CHECK: tzcntw
-}
-
-declare i8 @llvm.cttz.i8(i8) nounwind readnone
-