summaryrefslogtreecommitdiff
path: root/test/Verifier
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2008-05-20 22:07:21 +0000
committerGabor Greif <ggreif@gmail.com>2008-05-20 22:07:21 +0000
commit5edf210bdf0964193f059cc48464f3ea5c9e9e09 (patch)
tree6723f351a395699f151b28406a31db847f14c3b2 /test/Verifier
parenteb0fdc150a807a5fd1b656c13fdf019d93ff4bc3 (diff)
Eliminate questionable syntax for stdin redirection. This probably also speeds things up a bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51357 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Verifier')
-rw-r--r--test/Verifier/2008-01-11-VarargAttrs.ll2
-rw-r--r--test/Verifier/byval-1.ll2
-rw-r--r--test/Verifier/byval-2.ll2
-rw-r--r--test/Verifier/byval-4.ll2
-rw-r--r--test/Verifier/invoke-2.ll2
5 files changed, 5 insertions, 5 deletions
diff --git a/test/Verifier/2008-01-11-VarargAttrs.ll b/test/Verifier/2008-01-11-VarargAttrs.ll
index e8e9c41c6df..e44a94b63b1 100644
--- a/test/Verifier/2008-01-11-VarargAttrs.ll
+++ b/test/Verifier/2008-01-11-VarargAttrs.ll
@@ -1,4 +1,4 @@
-; RUN: not llvm-as < %s -o /dev/null
+; RUN: not llvm-as %s -o /dev/null
%struct = type { }
diff --git a/test/Verifier/byval-1.ll b/test/Verifier/byval-1.ll
index 9c2cb98451a..01207e757c2 100644
--- a/test/Verifier/byval-1.ll
+++ b/test/Verifier/byval-1.ll
@@ -1,2 +1,2 @@
-; RUN: not llvm-as < %s -o /dev/null -f
+; RUN: not llvm-as %s -o /dev/null -f
declare void @h(i32 byval %num)
diff --git a/test/Verifier/byval-2.ll b/test/Verifier/byval-2.ll
index 43cea4ee1ec..d7bfedfcd6a 100644
--- a/test/Verifier/byval-2.ll
+++ b/test/Verifier/byval-2.ll
@@ -1,3 +1,3 @@
-; RUN: llvm-as < %s -o /dev/null -f
+; RUN: llvm-as %s -o /dev/null -f
%s = type opaque
declare void @h(%s* byval %num)
diff --git a/test/Verifier/byval-4.ll b/test/Verifier/byval-4.ll
index ff733a5bdc9..d69f66caec3 100644
--- a/test/Verifier/byval-4.ll
+++ b/test/Verifier/byval-4.ll
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s -o /dev/null -f
+; RUN: llvm-as %s -o /dev/null -f
%struct.foo = type { i64 }
declare void @h(%struct.foo* byval %num)
diff --git a/test/Verifier/invoke-2.ll b/test/Verifier/invoke-2.ll
index 27375fa7f5a..9201f4d9fb0 100644
--- a/test/Verifier/invoke-2.ll
+++ b/test/Verifier/invoke-2.ll
@@ -1,4 +1,4 @@
-; RUN: not llvm-as < %s -f |& grep {not verify as correct}
+; RUN: not llvm-as %s -f |& grep {not verify as correct}
; PR1042
define i32 @foo() {