diff options
author | John Criswell <criswell@uiuc.edu> | 2004-03-17 02:31:29 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2004-03-17 02:31:29 +0000 |
commit | 2942e6356bc39757ce73a64c682173e75c4804fa (patch) | |
tree | 5daff9cc4557e02570b2f76c74d852ab39e940d2 /test/Transforms/SimplifyCFG | |
parent | 7acd1ccb8a61217f8c06b5fbdcc9785437bd0989 (diff) | |
download | external_llvm-2942e6356bc39757ce73a64c682173e75c4804fa.zip external_llvm-2942e6356bc39757ce73a64c682173e75c4804fa.tar.gz external_llvm-2942e6356bc39757ce73a64c682173e75c4804fa.tar.bz2 |
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).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12466 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/SimplifyCFG')
-rw-r--r-- | test/Transforms/SimplifyCFG/PhiEliminate.ll | 4 |
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) |