temporarily revert r112664, it is causing a decoding conflict, and

the testcases should be merged.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112711 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2010-09-01 16:00:50 +00:00
parent a51d89ce16
commit 5bcb8a6112
5 changed files with 0 additions and 142 deletions

View File

@@ -1,12 +0,0 @@
; RUN: llc < %s -mtriple=arm-apple-darwin | FileCheck %s
define i32 @f1(i32 %t) nounwind {
; CHECK: f1
; CHECK-NOT: tst
; CHECK: and
; CHECK: mvnne
%and = and i32 %t, 256
%tobool = icmp eq i32 %and, 0
%retval.0 = select i1 %tobool, i32 0, i32 -26
ret i32 %retval.0
}

View File

@@ -1,13 +0,0 @@
; RUN: llc < %s -mtriple=thumbv7-apple-darwin | FileCheck %s
define i32 @f1(i32 %t) nounwind {
; CHECK: f1
; CHECK-NOT: tst
; CHECK: ands
; CHECK: it ne
; CHECK: mvnne
%and = and i32 %t, 256
%tobool = icmp eq i32 %and, 0
%retval.0 = select i1 %tobool, i32 0, i32 -26
ret i32 %retval.0
}