[llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyCFG/PhiEliminate.ll

John Criswell criswell at cs.uiuc.edu
Tue Mar 16 20:32:01 PST 2004


Changes in directory llvm/test/Regression/Transforms/SimplifyCFG:

PhiEliminate.ll updated: 1.1 -> 1.2

---
Log message:

Modify test to use the %t substition (temporary name).  This is available
in the QMTest Testrunner tests.
Please note that putting output files in the Output directory no longer
works, as QMTest does not build Output directories anymore (nor does the
test run in a separate subdirectory, anyway).



---
Diffs of the changes:  (+2 -2)

Index: llvm/test/Regression/Transforms/SimplifyCFG/PhiEliminate.ll
diff -u llvm/test/Regression/Transforms/SimplifyCFG/PhiEliminate.ll:1.1 llvm/test/Regression/Transforms/SimplifyCFG/PhiEliminate.ll:1.2
--- llvm/test/Regression/Transforms/SimplifyCFG/PhiEliminate.ll:1.1	Tue Feb 10 21:35:04 2004
+++ llvm/test/Regression/Transforms/SimplifyCFG/PhiEliminate.ll	Tue Mar 16 20:31:29 2004
@@ -3,8 +3,8 @@
 ; nodes away allows the branches to be eliminated, performing a simple form of
 ; 'if conversion'.
 
-; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis > Output/%s.xform
-; RUN: not grep phi Output/%s.xform && grep ret Output/%s.xform
+; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis > %t.xform
+; RUN: not grep phi %t.xform && grep ret %t.xform
 
 declare void %use(bool)
 declare void %use(int)





More information about the llvm-commits mailing list