aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/SimplifyCFG/PhiEliminate.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/SimplifyCFG/PhiEliminate.ll')
-rw-r--r--test/Transforms/SimplifyCFG/PhiEliminate.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/SimplifyCFG/PhiEliminate.ll b/test/Transforms/SimplifyCFG/PhiEliminate.ll
index 05cbe89..e2a4c93 100644
--- a/test/Transforms/SimplifyCFG/PhiEliminate.ll
+++ b/test/Transforms/SimplifyCFG/PhiEliminate.ll
@@ -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)