fix a bunch of spurious failures for people whose home directory
authorChris Lattner <sabre@nondot.org>
Fri, 11 Sep 2009 17:02:12 +0000 (17:02 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 11 Sep 2009 17:02:12 +0000 (17:02 +0000)
is sabre.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81528 91177308-0d34-0410-b5e6-96231b3b80d8

15 files changed:
test/Transforms/SCCP/calltest.ll
test/Transforms/SCCP/phitest.ll
test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll
test/Transforms/SimplifyCFG/HoistCode.ll
test/Transforms/SimplifyCFG/PhiEliminate2.ll
test/Transforms/SimplifyCFG/SpeculativeExec.ll
test/Transforms/SimplifyCFG/basictest.ll
test/Transforms/SimplifyCFG/hoist-common-code.dbg.ll
test/Transforms/SimplifyCFG/hoist-common-code.ll
test/Transforms/SimplifyCFG/return-merge.ll
test/Transforms/SimplifyCFG/switch_create.ll
test/Transforms/SimplifyCFG/switch_formation.dbg.ll
test/Transforms/SimplifyCFG/switch_formation.ll
test/Transforms/SimplifyCFG/two-entry-phi-return.dbg.ll
test/Transforms/SimplifyCFG/two-entry-phi-return.ll

index f4e0186fff4087a8f7c519296bedb6b42c5bc2a8..9dec22f4d1cd1b2d0db115790497088ca72a3470 100644 (file)
@@ -1,5 +1,4 @@
-; RUN: opt %s -sccp -loop-deletion -simplifycfg -S | \
-; RUN:   not grep br
+; RUN: opt < %s -sccp -loop-deletion -simplifycfg -S | not grep br
 
 ; No matter how hard you try, sqrt(1.0) is always 1.0.  This allows the
 ; optimizer to delete this loop.
index 616307d6e6715940514d1cae929179493d4f8580..4c5c3dcc6904543ddb81351a3a545b6b1ac6298c 100644 (file)
@@ -1,5 +1,4 @@
-; RUN: opt %s -sccp -dce -simplifycfg -S | \
-; RUN:   not grep br
+; RUN: opt < %s -sccp -dce -simplifycfg -S | not grep br
 
 define i32 @test(i32 %param) {
 entry:
index 8217e8bd0843ee79d5d6b1bf00ae0218b187082e..88f32bc08279d9cc694d549680f506a97ea46c95 100644 (file)
@@ -1,7 +1,7 @@
 ; -simplifycfg is not folding blocks if there is a PHI node involved.  This 
 ; should be fixed eventually
 
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt %s -simplifycfg -S | not grep br
 
 define i32 @main(i32 %argc) {
 ; <label>:0
index f52d1607148022eeba06e5be6d22dfafc131fa03..9697e56a719f1fe324b6eac512923b6309ecdbc6 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt %s -simplifycfg -S | not grep br
 
 define void @foo(i1 %C, i32* %P) {
         br i1 %C, label %T, label %F
index c0270e4b29b85cb501d66cdc0125da07fb70cd40..c0f6781293db5d14b4a6a7ba0e72c7aacee752f1 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt %s -simplifycfg -S | not grep br
 
 define i32 @test(i1 %C, i32 %V1, i32 %V2) {
 entry:
index 891b566f3ab527c02359cbf719379325afeab29e..5cfc77ce08a5b1b51ab7520e2dd1228d7ddfd101 100644 (file)
@@ -1,5 +1,5 @@
-; RUN: opt %s -simplifycfg  -S | grep select
-; RUN: opt %s -simplifycfg  -S | grep br | count 2
+; RUN: opt %s -simplifycfg  -S | grep select
+; RUN: opt %s -simplifycfg  -S | grep br | count 2
 
 define i32 @t2(i32 %a, i32 %b, i32 %c) nounwind  {
 entry:
index 0bf5b5eed4b4f4b8fe132f26f279bc3629fa4422..468b6ed11bc43caec85c7bc42e38e97455ee6543 100644 (file)
@@ -1,6 +1,6 @@
 ; Test CFG simplify removal of branch instructions...
 ;
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt %s -simplifycfg -S | not grep br
 
 define void @test1() {
         br label %BB1
index 9a73cbc5a76816a22121b7c360a6d8db009abbf9..2e7ef7a8dfbaa5f5ac60972f4229c85dabb2910d 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt %s -simplifycfg -S | not grep br
 
 
         %llvm.dbg.anchor.type = type { i32, i32 }
index 3568571bf8c4883e7f87bbdbc1919974241f6e16..5c83e2a3aa49376e0545e86db2032686850fcf29 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt %s -simplifycfg -S | not grep br
 
 declare void @bar(i32)
 
index ddc791d91e97409b28828e63406b2402ae76a962..977b6dff87cb7b00981f118453d1aac4520f2e01 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt %s -simplifycfg -S | not grep br
 
 define i32 @test1(i1 %C) {
 entry:
index 5df9210e16e563c0dd1361158e689453365fd9f1..9b3aaf7f20deaf37f0697f8cc37ccc1696b3a043 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt %s -simplifycfg -S | not grep br
 
 declare void @foo1()
 
index 9b4b4ae6d0ecb977d45c6a9bfd2fd5846c406d67..f5f4c935a365f49570efabc2d91bf3de9f787e26 100644 (file)
@@ -1,5 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
-; END.
+; RUN: opt < %s -simplifycfg -S | not grep br
 
 
         %llvm.dbg.anchor.type = type { i32, i32 }
index 6eea141e6d09d30e66e2b11bc74f9b193c8c7b56..787904a5d4f837182306b88502eee74d4fb0a210 100644 (file)
@@ -1,5 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
-; END.
+; RUN: opt < %s -simplifycfg -S | not grep br
 
 define i1 @_ZN4llvm11SetCondInst7classofEPKNS_11InstructionE({ i32, i32 }* %I) {
 entry:
index ff85810c76de88ea6f12346d2283a0f0cf7f7661..3a6c2ed6680c7358346890cf6161fdd2b5dd9603 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt %s -simplifycfg -S | not grep br
 
         %llvm.dbg.anchor.type = type { i32, i32 }
         %llvm.dbg.compile_unit.type = type { i32, { }*, i32, i8*, i8*, i8*, i1, i1, i8* }
index f28c8c97ebfcbcf0faab413060d1d75cdfe78f6d..fb18624c71f764a79c7108916b2d78474b7b018d 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt %s -simplifycfg -S | not grep br
 
 define i1 @qux(i8* %m, i8* %n, i8* %o, i8* %p) nounwind  {
 entry: