filecheckize

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119987 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2010-11-23 02:26:52 +00:00
parent 1090742689
commit 2e1a75d6f4
2 changed files with 22 additions and 17 deletions

View File

@ -1,6 +1,26 @@
; RUN: llc < %s -march=sparc
; RUN: llc < %s -march=sparc | FileCheck %s
define i32 @test(i32 %X) {
define i32 @test0(i32 %X) {
%tmp.1 = add i32 %X, 1
ret i32 %tmp.1
; CHECK: test0:
; CHECK: add %i0, 1, %i0
}
;; xnor tests.
define i32 @test1(i32 %X, i32 %Y) {
%A = xor i32 %X, %Y
%B = xor i32 %A, -1
ret i32 %B
; CHECK: test1:
; CHECK: xnor %i0, %i1, %i0
}
define i32 @test2(i32 %X, i32 %Y) {
%A = xor i32 %X, -1
%B = xor i32 %A, %Y
ret i32 %B
; CHECK: test2:
; CHECK: xnor %i0, %i1, %i0
}

View File

@ -1,15 +0,0 @@
; RUN: llc < %s -march=sparc | \
; RUN: grep xnor | count 2
define i32 @test1(i32 %X, i32 %Y) {
%A = xor i32 %X, %Y ; <i32> [#uses=1]
%B = xor i32 %A, -1 ; <i32> [#uses=1]
ret i32 %B
}
define i32 @test2(i32 %X, i32 %Y) {
%A = xor i32 %X, -1 ; <i32> [#uses=1]
%B = xor i32 %A, %Y ; <i32> [#uses=1]
ret i32 %B
}