[llvm-commits] [llvm] r47604 - in /llvm/trunk/test: CodeGen/PowerPC/frounds.ll Transforms/InstCombine/2008-02-23-MulSub.ll

Gabor Greif ggreif at gmail.com
Tue Feb 26 05:37:21 PST 2008


Author: ggreif
Date: Tue Feb 26 07:37:13 2008
New Revision: 47604

URL: http://llvm.org/viewvc/llvm-project?rev=47604&view=rev
Log:
Really feed llvm-as with the testcase, do not let it read from stdin. This fixes the hangs seen on solaris10.

Modified:
    llvm/trunk/test/CodeGen/PowerPC/frounds.ll
    llvm/trunk/test/Transforms/InstCombine/2008-02-23-MulSub.ll

Modified: llvm/trunk/test/CodeGen/PowerPC/frounds.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/frounds.ll?rev=47604&r1=47603&r2=47604&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/frounds.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/frounds.ll Tue Feb 26 07:37:13 2008
@@ -1,4 +1,4 @@
-; RUN: llvm-as | llc -march=ppc32
+; RUN: llvm-as < %s | llc -march=ppc32
 
 define i32 @foo() {
 entry:

Modified: llvm/trunk/test/Transforms/InstCombine/2008-02-23-MulSub.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/2008-02-23-MulSub.ll?rev=47604&r1=47603&r2=47604&view=diff

==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/2008-02-23-MulSub.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/2008-02-23-MulSub.ll Tue Feb 26 07:37:13 2008
@@ -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:





More information about the llvm-commits mailing list