Now that ScalarEvolution::print writes to the correct stream, there is

no need to redirect stderr into stdout.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47009 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Wojciech Matyjewicz 2008-02-12 15:12:40 +00:00
parent 2a9054cfd6
commit 52f321f525
7 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& grep {Loop bb: 100 iterations}
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep {Loop bb: 100 iterations}
; PR1533
@array = weak global [101 x i32] zeroinitializer, align 32 ; <[100 x i32]*> [#uses=1]

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -scalar-evolution -analyze |& grep {Loop bb: ( -1 + ( -1 \\* %x) + %y) iterations!}
; RUN: llvm-as < %s | opt -scalar-evolution -analyze | grep {Loop bb: ( -1 + ( -1 \\* %x) + %y) iterations!}
; PR1597
define i32 @f(i32 %x, i32 %y) {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& grep {13 iterations}
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep {13 iterations}
; PR1706
define i32 @f() {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& grep -e {--> %b}
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep -e {--> %b}
; PR1810
define void @fun() {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | \
; RUN: grep {100 iterations}
; PR1101

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | \
; RUN: grep {10000 iterations}
; PR1101

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | \
; RUN: grep {4 iterations}
; PR1101