OSDN Git Service

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 f4e0186..9dec22f 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 616307d..4c5c3dc 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 8217e8b..88f32bc 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 f52d160..9697e56 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 c0270e4..c0f6781 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 891b566..5cfc77c 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 0bf5b5e..468b6ed 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 9a73cbc..2e7ef7a 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 3568571..5c83e2a 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 ddc791d..977b6df 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 5df9210..9b3aaf7 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 9b4b4ae..f5f4c93 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 6eea141..787904a 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 ff85810..3a6c2ed 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 f28c8c9..fb18624 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: