OSDN Git Service

Use "opt < %s" instead of "opt %s" so that opt doesn't print the test
authorDan Gohman <gohman@apple.com>
Tue, 8 Sep 2009 22:57:49 +0000 (22:57 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 8 Sep 2009 22:57:49 +0000 (22:57 +0000)
filename in the output, which interferes with the tests' grep lines.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81263 91177308-0d34-0410-b5e6-96231b3b80d8

test/Feature/weak_constant.ll
test/Transforms/IndVarSimplify/masked-iv.ll
test/Transforms/InstCombine/or-to-xor.ll
test/Transforms/Reassociate/inverses.ll
test/Transforms/SCCP/apint-basictest4.ll

index fde1551..9025aaa 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -std-compile-opts -S > %t
+; RUN: opt %s -std-compile-opts -S > %t
 ; RUN:   grep undef %t | count 1
 ; RUN:   grep 5 %t | count 1
 ; RUN:   grep 7 %t | count 1
index 0138852..f1f5af9 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -indvars -S > %t
+; RUN: opt %s -indvars -S > %t
 ; RUN: not grep trunc %t
 ; RUN: grep and %t | count 1
 
index 7cab543..1495ee4 100644 (file)
@@ -1,5 +1,5 @@
-; RUN: opt %s -instcombine -S | grep {xor i32 %a, %b} | count 4
-; RUN: opt %s -instcombine -S | not grep {and}
+; RUN: opt %s -instcombine -S | grep {xor i32 %a, %b} | count 4
+; RUN: opt %s -instcombine -S | not grep {and}
 
 define i32 @func1(i32 %a, i32 %b) nounwind readnone {
 entry:
index fecab3d..fa1a4bd 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt %s -reassociate -dce -S | \
+; RUN: opt %s -reassociate -dce -S | \
 ; RUN:   not grep {\\(and\\|sub\\)}
 
 define i32 @test1(i32 %a, i32 %b) {
index 97a33f4..41036ea 100644 (file)
@@ -2,9 +2,9 @@
 ; logic operations.
 
 
-; RUN: opt %s -sccp -S | not grep and
-; RUN: opt %s -sccp -S | not grep trunc
-; RUN: opt %s -sccp -S | grep {ret i100 -1}
+; RUN: opt %s -sccp -S | not grep and
+; RUN: opt %s -sccp -S | not grep trunc
+; RUN: opt %s -sccp -S | grep {ret i100 -1}
 
 define i100 @test(i133 %A) {
         %B = and i133 0, %A