diff options
| author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-06-28 01:29:35 +0000 | 
|---|---|---|
| committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-06-28 01:29:35 +0000 | 
| commit | fbfdced30ff483dd8e4dd74b811122a63da06611 (patch) | |
| tree | 3db4d2b60d5e2cc8333f51116e9232897234c76b /llvm/test | |
| parent | 1842482359c1c578be86cdfa3e12149247c551e8 (diff) | |
| download | bcm5719-llvm-fbfdced30ff483dd8e4dd74b811122a63da06611.tar.gz bcm5719-llvm-fbfdced30ff483dd8e4dd74b811122a63da06611.zip | |
Convert tests to FileCheck
llvm-svn: 185124
Diffstat (limited to 'llvm/test')
4 files changed, 14 insertions, 7 deletions
| diff --git a/llvm/test/Transforms/InstCombine/2008-01-06-BitCastAttributes.ll b/llvm/test/Transforms/InstCombine/2008-01-06-BitCastAttributes.ll index 23b606779e6..6588a918bae 100644 --- a/llvm/test/Transforms/InstCombine/2008-01-06-BitCastAttributes.ll +++ b/llvm/test/Transforms/InstCombine/2008-01-06-BitCastAttributes.ll @@ -1,5 +1,7 @@  ; Ignore stderr, we expect warnings there -; RUN: opt < %s -instcombine 2> /dev/null -S | not grep bitcast +; RUN: opt < %s -instcombine 2> /dev/null -S | FileCheck %s + +; CHECK-NOT: bitcast  define void @a() {  	ret void diff --git a/llvm/test/Transforms/InstCombine/2008-01-06-VoidCast.ll b/llvm/test/Transforms/InstCombine/2008-01-06-VoidCast.ll index 407ff4ddc29..ebd5c4229d4 100644 --- a/llvm/test/Transforms/InstCombine/2008-01-06-VoidCast.ll +++ b/llvm/test/Transforms/InstCombine/2008-01-06-VoidCast.ll @@ -1,9 +1,9 @@ -; RUN: opt < %s -instcombine -S | not grep bitcast +; RUN: opt < %s -instcombine -S | FileCheck %s  define void @f(i16 %y) {  	ret void  } - +; CHECK-NOT: bitcast  define i32 @g(i32 %y) {  	%x = call i32 bitcast (void (i16)* @f to i32 (i32)*)( i32 %y )		; <i32> [#uses=1]  	ret i32 %x diff --git a/llvm/test/Transforms/InstCombine/apint-call-cast-target.ll b/llvm/test/Transforms/InstCombine/apint-call-cast-target.ll index fe336de7524..7d7c8fa503f 100644 --- a/llvm/test/Transforms/InstCombine/apint-call-cast-target.ll +++ b/llvm/test/Transforms/InstCombine/apint-call-cast-target.ll @@ -1,9 +1,11 @@ -; RUN: opt < %s -instcombine -S | grep call | not grep bitcast +; RUN: opt < %s -instcombine -S | FileCheck %s  target datalayout = "e-p:32:32"  target triple = "i686-pc-linux-gnu" - +; CHECK-NOT: bitcast +; CHECK: call +; CHECK-NOT: bitcast  define i32 @main() {  entry:  	%tmp = call i32 bitcast (i7* (i999*)* @ctime to i32 (i99*)*)( i99* null ) diff --git a/llvm/test/Transforms/InstCombine/call-cast-target.ll b/llvm/test/Transforms/InstCombine/call-cast-target.ll index 7addc8abc84..19074212d3e 100644 --- a/llvm/test/Transforms/InstCombine/call-cast-target.ll +++ b/llvm/test/Transforms/InstCombine/call-cast-target.ll @@ -1,9 +1,12 @@ -; RUN: opt < %s -instcombine -S | \ -; RUN:   grep call | not grep bitcast +; RUN: opt < %s -instcombine -S | FileCheck %s  target datalayout = "e-p:32:32"  target triple = "i686-pc-linux-gnu" +; CHECK-NOT: bitcast +; CHECK: call +; CHECK-NOT: bitcast +  define i32 @main() {  entry:          %tmp = call i32 bitcast (i8* (i32*)* @ctime to i32 (i32*)*)( i32* null )          ; <i32> [#uses=1] | 

