aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen
diff options
context:
space:
mode:
authorJoel Jones <joel_k_jones@apple.com>2012-06-05 00:47:21 +0000
committerJoel Jones <joel_k_jones@apple.com>2012-06-05 00:47:21 +0000
commite061053051a8eaafe020b2d0a81f9e4ee910c1d0 (patch)
treebf8244882f68b73ee999a02bbc9b6978211d4841 /test/CodeGen
parentdd52bf2ed806229732115400b2a060204f24dea3 (diff)
Revert commit r157966
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157972 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/ARM/bicNoZext.ll19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/CodeGen/ARM/bicNoZext.ll b/test/CodeGen/ARM/bicNoZext.ll
deleted file mode 100644
index cf4b7ba0e0..0000000000
--- a/test/CodeGen/ARM/bicNoZext.ll
+++ /dev/null
@@ -1,19 +0,0 @@
-; RUN: llc %s -o - | FileCheck %s
-; ModuleID = 'bic.c'
-target triple = "thumbv7-apple-ios3.0.0"
-
-define zeroext i16 @foo16(i16 zeroext %f) nounwind readnone optsize ssp {
-entry:
- ; CHECK: .thumb_func _foo16
- ; CHECK: {{bic[^#]*#3}}
- %and = and i16 %f, -4
- ret i16 %and
-}
-
-define i32 @foo32(i32 %f) nounwind readnone optsize ssp {
-entry:
- ; CHECK: .thumb_func _foo32
- ; CHECK: {{bic[^#]*#3}}
- %and = and i32 %f, -4
- ret i32 %and
-}