diff options
| author | Dan Gohman <gohman@apple.com> | 2009-09-09 00:22:49 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-09-09 00:22:49 +0000 |
| commit | c466e31309b569389d8ff267311bcae6401ba2e7 (patch) | |
| tree | 30faf44df00d5e09789ac229aa421f487c205243 | |
| parent | 5fdb699f136f012bc7e519decf42b6de0f1a5fc8 (diff) | |
| download | bcm5719-llvm-c466e31309b569389d8ff267311bcae6401ba2e7.tar.gz bcm5719-llvm-c466e31309b569389d8ff267311bcae6401ba2e7.zip | |
Use "opt < %s" instead of "opt %s" to keep the testname away from the grep.
llvm-svn: 81299
| -rw-r--r-- | llvm/test/Transforms/InstCombine/apint-shift-simplify.ll | 2 | ||||
| -rw-r--r-- | llvm/test/Transforms/InstCombine/shift-simplify.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/InstCombine/apint-shift-simplify.ll b/llvm/test/Transforms/InstCombine/apint-shift-simplify.ll index 421069a21ec..1a3340ac566 100644 --- a/llvm/test/Transforms/InstCombine/apint-shift-simplify.ll +++ b/llvm/test/Transforms/InstCombine/apint-shift-simplify.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -instcombine -S | \ +; RUN: opt < %s -instcombine -S | \ ; RUN: egrep {shl|lshr|ashr} | count 3 define i41 @test0(i41 %A, i41 %B, i41 %C) { diff --git a/llvm/test/Transforms/InstCombine/shift-simplify.ll b/llvm/test/Transforms/InstCombine/shift-simplify.ll index b18414dad4d..e5cc705350f 100644 --- a/llvm/test/Transforms/InstCombine/shift-simplify.ll +++ b/llvm/test/Transforms/InstCombine/shift-simplify.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -instcombine -S | \ +; RUN: opt < %s -instcombine -S | \ ; RUN: egrep {shl|lshr|ashr} | count 3 define i32 @test0(i32 %A, i32 %B, i32 %C) { |

