[llvm-commits] [llvm] r81528 - in /llvm/trunk/test/Transforms: SCCP/calltest.ll SCCP/phitest.ll SimplifyCFG/2002-06-24-PHINode.ll SimplifyCFG/HoistCode.ll SimplifyCFG/PhiEliminate2.ll SimplifyCFG/SpeculativeExec.ll SimplifyCFG/basictest.ll SimplifyCFG/hoist-common-code.dbg.ll SimplifyCFG/hoist-common-code.ll SimplifyCFG/return-merge.ll SimplifyCFG/switch_create.ll SimplifyCFG/switch_formation.dbg.ll SimplifyCFG/switch_formation.ll SimplifyCFG/two-entry-phi-return.dbg.ll SimplifyCFG/two-entry-phi-return.ll
Chris Lattner
sabre at nondot.org
Fri Sep 11 10:02:12 PDT 2009
Author: lattner
Date: Fri Sep 11 12:02:12 2009
New Revision: 81528
URL: http://llvm.org/viewvc/llvm-project?rev=81528&view=rev
Log:
fix a bunch of spurious failures for people whose home directory
is sabre.
Modified:
llvm/trunk/test/Transforms/SCCP/calltest.ll
llvm/trunk/test/Transforms/SCCP/phitest.ll
llvm/trunk/test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll
llvm/trunk/test/Transforms/SimplifyCFG/HoistCode.ll
llvm/trunk/test/Transforms/SimplifyCFG/PhiEliminate2.ll
llvm/trunk/test/Transforms/SimplifyCFG/SpeculativeExec.ll
llvm/trunk/test/Transforms/SimplifyCFG/basictest.ll
llvm/trunk/test/Transforms/SimplifyCFG/hoist-common-code.dbg.ll
llvm/trunk/test/Transforms/SimplifyCFG/hoist-common-code.ll
llvm/trunk/test/Transforms/SimplifyCFG/return-merge.ll
llvm/trunk/test/Transforms/SimplifyCFG/switch_create.ll
llvm/trunk/test/Transforms/SimplifyCFG/switch_formation.dbg.ll
llvm/trunk/test/Transforms/SimplifyCFG/switch_formation.ll
llvm/trunk/test/Transforms/SimplifyCFG/two-entry-phi-return.dbg.ll
llvm/trunk/test/Transforms/SimplifyCFG/two-entry-phi-return.ll
Modified: llvm/trunk/test/Transforms/SCCP/calltest.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SCCP/calltest.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SCCP/calltest.ll (original)
+++ llvm/trunk/test/Transforms/SCCP/calltest.ll Fri Sep 11 12:02:12 2009
@@ -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.
Modified: llvm/trunk/test/Transforms/SCCP/phitest.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SCCP/phitest.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SCCP/phitest.ll (original)
+++ llvm/trunk/test/Transforms/SCCP/phitest.ll Fri Sep 11 12:02:12 2009
@@ -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:
Modified: llvm/trunk/test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll Fri Sep 11 12:02:12 2009
@@ -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
Modified: llvm/trunk/test/Transforms/SimplifyCFG/HoistCode.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/HoistCode.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/HoistCode.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/HoistCode.ll Fri Sep 11 12:02:12 2009
@@ -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
Modified: llvm/trunk/test/Transforms/SimplifyCFG/PhiEliminate2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/PhiEliminate2.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/PhiEliminate2.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/PhiEliminate2.ll Fri Sep 11 12:02:12 2009
@@ -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:
Modified: llvm/trunk/test/Transforms/SimplifyCFG/SpeculativeExec.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/SpeculativeExec.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/SpeculativeExec.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/SpeculativeExec.ll Fri Sep 11 12:02:12 2009
@@ -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:
Modified: llvm/trunk/test/Transforms/SimplifyCFG/basictest.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/basictest.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/basictest.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/basictest.ll Fri Sep 11 12:02:12 2009
@@ -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
Modified: llvm/trunk/test/Transforms/SimplifyCFG/hoist-common-code.dbg.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/hoist-common-code.dbg.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/hoist-common-code.dbg.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/hoist-common-code.dbg.ll Fri Sep 11 12:02:12 2009
@@ -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 }
Modified: llvm/trunk/test/Transforms/SimplifyCFG/hoist-common-code.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/hoist-common-code.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/hoist-common-code.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/hoist-common-code.ll Fri Sep 11 12:02:12 2009
@@ -1,4 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt < %s -simplifycfg -S | not grep br
declare void @bar(i32)
Modified: llvm/trunk/test/Transforms/SimplifyCFG/return-merge.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/return-merge.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/return-merge.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/return-merge.ll Fri Sep 11 12:02:12 2009
@@ -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:
Modified: llvm/trunk/test/Transforms/SimplifyCFG/switch_create.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/switch_create.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/switch_create.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/switch_create.ll Fri Sep 11 12:02:12 2009
@@ -1,4 +1,4 @@
-; RUN: opt %s -simplifycfg -S | not grep br
+; RUN: opt < %s -simplifycfg -S | not grep br
declare void @foo1()
Modified: llvm/trunk/test/Transforms/SimplifyCFG/switch_formation.dbg.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/switch_formation.dbg.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/switch_formation.dbg.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/switch_formation.dbg.ll Fri Sep 11 12:02:12 2009
@@ -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 }
Modified: llvm/trunk/test/Transforms/SimplifyCFG/switch_formation.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/switch_formation.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/switch_formation.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/switch_formation.ll Fri Sep 11 12:02:12 2009
@@ -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:
Modified: llvm/trunk/test/Transforms/SimplifyCFG/two-entry-phi-return.dbg.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/two-entry-phi-return.dbg.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/two-entry-phi-return.dbg.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/two-entry-phi-return.dbg.ll Fri Sep 11 12:02:12 2009
@@ -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* }
Modified: llvm/trunk/test/Transforms/SimplifyCFG/two-entry-phi-return.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/two-entry-phi-return.ll?rev=81528&r1=81527&r2=81528&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/two-entry-phi-return.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/two-entry-phi-return.ll Fri Sep 11 12:02:12 2009
@@ -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:
More information about the llvm-commits
mailing list