Add -disable-output to a bunch of tests that don't care about the output.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73633 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-06-17 20:56:26 +00:00
parent 42c3f554f4
commit 559254b697
31 changed files with 32 additions and 32 deletions

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output \
; RUN: -scalar-evolution-max-iterations=0 | grep {Loop bb: backedge-taken count is 100}
; PR1533

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -scalar-evolution -analyze | grep {Loop bb: backedge-taken count is (-1 + (-1 \\* %x) + %y)}
; RUN: llvm-as < %s | opt -scalar-evolution -analyze -disable-output | grep {Loop bb: backedge-taken count is (-1 + (-1 \\* %x) + %y)}
; PR1597
define i32 @f(i32 %x, i32 %y) {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output \
; RUN: -scalar-evolution-max-iterations=0 | grep {backedge-taken count is 13}
; PR1706

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 -disable-output | grep -e {--> %b}
; PR1810
define void @fun() {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -scalar-evolution -analyze | grep {Loop header: backedge-taken count is (0 smax %n)}
; RUN: llvm-as < %s | opt -scalar-evolution -analyze -disable-output | grep {Loop header: backedge-taken count is (0 smax %n)}
define void @foo(i32 %n) {
entry:

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -scalar-evolution -analyze | grep {Loop loop: backedge-taken count is (100 + (-100 smax %n))}
; RUN: llvm-as < %s | opt -scalar-evolution -analyze -disable-output | grep {Loop loop: backedge-taken count is (100 + (-100 smax %n))}
; PR2002
define void @foo(i8 %n) {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep umax
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output | grep umax
; PR2003
define i32 @foo(i32 %n) {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output \
; RUN: -scalar-evolution-max-iterations=0 | grep {backedge-taken count is 61}
; PR2364

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& not grep smax
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output |& not grep smax
; PR2261
@lut = common global [256 x i8] zeroinitializer, align 32 ; <[256 x i8]*> [#uses=1]

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& not grep smax
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output |& not grep smax
; PR2070
define i32 @a(i32 %x) nounwind {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output \
; RUN: -scalar-evolution-max-iterations=0 | grep Unpredictable
; PR2088

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output \
; RUN: -scalar-evolution-max-iterations=0 | grep {backedge-taken count is 113}
; PR2088

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output
; PR1827
declare void @use(i32)

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output
; PR2602
define i32 @a() nounwind {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output |& \
; RUN: grep {Loop bb: backedge-taken count is (7 + (-1 \\* %argc))}
; XFAIL: *

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& grep {/u 3}
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output |& grep {/u 3}
define i32 @f(i32 %x) nounwind readnone {
entry:

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& grep {/u 3}
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output |& grep {/u 3}
; XFAIL: *
define i32 @f(i32 %x) nounwind readnone {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep {backedge-taken count is 255}
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output | grep {backedge-taken count is 255}
; XFAIL: *
define i32 @foo(i32 %x, i32 %y, i32* %lam, i32* %alp) nounwind {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep {0 smax}
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output | grep {0 smax}
; XFAIL: *
define i32 @f(i32 %c.idx.val) {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output |& \
; RUN: grep {(((-1 \\* %i0) + (100005 smax %i0)) /u 5)}
; XFAIL: *

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution |& grep {/u 5}
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output |& grep {/u 5}
; XFAIL: *
define i8 @foo0(i8 %i0) nounwind {

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | not grep {/u -1}
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output | not grep {/u -1}
; PR3275
@g_16 = external global i16 ; <i16*> [#uses=3]

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep {(trunc i} | not grep ext
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output | grep {(trunc i} | not grep ext
define i16 @test1(i8 %x) {
%A = sext i8 %x to i32

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep {count is 2}
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output | grep {count is 2}
; PR3171
%struct.Foo = type { i32 }

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output \
; RUN: -scalar-evolution-max-iterations=0 | grep {backedge-taken count is 100}
; PR1101

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -scalar-evolution -analyze | grep {Loop bb3: backedge-taken count is (-1 + %n)}
; RUN: llvm-as < %s | opt -scalar-evolution -analyze -disable-output | grep {Loop bb3: backedge-taken count is (-1 + %n)}
; We don't want to use a max in the trip count expression in
; this testcase.

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep smax
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output | grep smax
; PR1614
define i32 @f(i32 %x, i32 %y) {

View File

@ -1,5 +1,5 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep smax | count 2
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output | grep smax | count 2
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output | grep \
; RUN: {%. smax %. smax %.}
; PR1614

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output \
; RUN: -scalar-evolution-max-iterations=0 | grep {backedge-taken count is 10000}
; PR1101

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | \
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output | \
; RUN: grep {backedge-taken count is 4}
; PR1101

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -iv-users -analyze | grep store
; RUN: llvm-as < %s | opt -iv-users -analyze -disable-output | grep store
define fastcc void @foo() nounwind {
entry: