From 72c8f0d156c0a32d809715bca402b5242b179340 Mon Sep 17 00:00:00 2001 From: Gabor Greif Date: Tue, 26 Feb 2008 13:37:13 +0000 Subject: [PATCH] Really feed llvm-as with the testcase, do not let it read from stdin. This fixes the hangs seen on solaris10. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47604 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/PowerPC/frounds.ll | 2 +- test/Transforms/InstCombine/2008-02-23-MulSub.ll | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/PowerPC/frounds.ll b/test/CodeGen/PowerPC/frounds.ll index 159639e396c..0d8e621f354 100644 --- a/test/CodeGen/PowerPC/frounds.ll +++ b/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/test/Transforms/InstCombine/2008-02-23-MulSub.ll b/test/Transforms/InstCombine/2008-02-23-MulSub.ll index 21917ab5cf4..9560e450cae 100644 --- a/test/Transforms/InstCombine/2008-02-23-MulSub.ll +++ b/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: -- 2.34.1