Eliminate questionable syntax for stdin redirection. This probably also speeds things up a bit.
llvm-svn: 51357
diff --git a/llvm/test/Assembler/2003-05-21-EmptyStructTest.ll b/llvm/test/Assembler/2003-05-21-EmptyStructTest.ll
index 333ab39..6925d26 100644
--- a/llvm/test/Assembler/2003-05-21-EmptyStructTest.ll
+++ b/llvm/test/Assembler/2003-05-21-EmptyStructTest.ll
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s -o /dev/null -f
+; RUN: llvm-as %s -o /dev/null -f
; The old C front-end never generated empty structures, now the new one
; can. For some reason we never handled them in the parser. Weird.