diff options
| author | Gabor Greif <ggreif@gmail.com> | 2008-02-26 13:37:13 +0000 |
|---|---|---|
| committer | Gabor Greif <ggreif@gmail.com> | 2008-02-26 13:37:13 +0000 |
| commit | 3d9755f6ca9736995ffb3d9536a343fd59550ba6 (patch) | |
| tree | 6391afbf40bb661317cb7b4d0727b8e4d1ed35e2 /llvm | |
| parent | 0a4360115381d51a0ab7d0edbc9e608c661276fc (diff) | |
| download | bcm5719-llvm-3d9755f6ca9736995ffb3d9536a343fd59550ba6.tar.gz bcm5719-llvm-3d9755f6ca9736995ffb3d9536a343fd59550ba6.zip | |
Really feed llvm-as with the testcase, do not let it read from stdin. This fixes the hangs seen on solaris10.
llvm-svn: 47604
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/frounds.ll | 2 | ||||
| -rw-r--r-- | llvm/test/Transforms/InstCombine/2008-02-23-MulSub.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/PowerPC/frounds.ll b/llvm/test/CodeGen/PowerPC/frounds.ll index 159639e396c..0d8e621f354 100644 --- a/llvm/test/CodeGen/PowerPC/frounds.ll +++ b/llvm/test/CodeGen/PowerPC/frounds.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as | llc -march=ppc32 +; RUN: llvm-as < %s | llc -march=ppc32 define i32 @foo() { entry: diff --git a/llvm/test/Transforms/InstCombine/2008-02-23-MulSub.ll b/llvm/test/Transforms/InstCombine/2008-02-23-MulSub.ll index 21917ab5cf4..9560e450cae 100644 --- a/llvm/test/Transforms/InstCombine/2008-02-23-MulSub.ll +++ b/llvm/test/Transforms/InstCombine/2008-02-23-MulSub.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as | opt -instcombine | llvm-dis | not grep mul +; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep mul define i26 @mul_283(i26 %a) nounwind { entry: |

