Fix testsuite hang.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35355 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2007-03-26 10:59:13 +00:00
parent d9aac12d3d
commit dce8d9cf99
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
; This test makes sure that the xor instructions are properly eliminated
; when arbitrary precision integers are used.
; RUN: llvm-as | opt -instcombine | llvm-dis | not grep xor
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep xor
define i33 @test1(i33 %A) {
%B = xor i33 %A, -1

View File

@ -2,7 +2,7 @@
; even with arbitrary precision integers.
;
; RUN: llvm-as | opt -instcombine | llvm-dis | \
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
; RUN: grep -v 'sub i19 %Cok, %Bok' | not grep sub
define i23 @test1(i23 %A) {