Index: test/Analysis/BasicAA/unreachable-block.ll =================================================================== --- test/Analysis/BasicAA/unreachable-block.ll +++ test/Analysis/BasicAA/unreachable-block.ll @@ -1,4 +1,4 @@ -; RUN: opt -basicaa -aa-eval -disable-output < %s >& /dev/null +; RUN: opt -basicaa -aa-eval -disable-output < %s > /dev/null 2>&1 ; BasicAA shouldn't infinitely recurse on the use-def cycles in ; unreachable code. Index: test/Assembler/2003-11-11-ImplicitRename.ll =================================================================== --- test/Assembler/2003-11-11-ImplicitRename.ll +++ test/Assembler/2003-11-11-ImplicitRename.ll @@ -1,8 +1,7 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 void %test() { %X = add int 0, 1 %X = add int 1, 2 ret void } - Index: test/Assembler/2007-11-26-AttributeOverload.ll =================================================================== --- test/Assembler/2007-11-26-AttributeOverload.ll +++ test/Assembler/2007-11-26-AttributeOverload.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 declare i32 @atoi(i8*) nounwind readonly declare i32 @atoi(i8*) Index: test/CodeGen/X86/GC/badreadproto.ll =================================================================== --- test/CodeGen/X86/GC/badreadproto.ll +++ test/CodeGen/X86/GC/badreadproto.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 %list = type { i32, %list* } Index: test/CodeGen/X86/GC/badrootproto.ll =================================================================== --- test/CodeGen/X86/GC/badrootproto.ll +++ test/CodeGen/X86/GC/badrootproto.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 %list = type { i32, %list* } %meta = type opaque Index: test/CodeGen/X86/GC/badwriteproto.ll =================================================================== --- test/CodeGen/X86/GC/badwriteproto.ll +++ test/CodeGen/X86/GC/badwriteproto.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 %list = type { i32, %list* } Index: test/CodeGen/X86/GC/fat.ll =================================================================== --- test/CodeGen/X86/GC/fat.ll +++ test/CodeGen/X86/GC/fat.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 declare void @llvm.gcroot(i8**, i8*) nounwind Index: test/CodeGen/X86/GC/outside.ll =================================================================== --- test/CodeGen/X86/GC/outside.ll +++ test/CodeGen/X86/GC/outside.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 declare void @llvm.gcroot(i8**, i8*) Index: test/Other/2002-01-31-CallGraph.ll =================================================================== --- test/Other/2002-01-31-CallGraph.ll +++ test/Other/2002-01-31-CallGraph.ll @@ -1,6 +1,6 @@ ; Call graph construction crash: Not handling indirect calls right ; -; RUN: opt < %s -analyze -print-callgraph >& /dev/null +; RUN: opt < %s -analyze -print-callgraph > /dev/null 2>&1 ; %FunTy = type i32 (i32) Index: test/TableGen/UnterminatedComment.td =================================================================== --- test/TableGen/UnterminatedComment.td +++ test/TableGen/UnterminatedComment.td @@ -1,4 +1,4 @@ -// RUN: not llvm-tblgen < %s >& /dev/null +// RUN: not llvm-tblgen < %s > /dev/null 2>&1 def x; Index: test/Verifier/2004-05-21-SwitchConstantMismatch.ll =================================================================== --- test/Verifier/2004-05-21-SwitchConstantMismatch.ll +++ test/Verifier/2004-05-21-SwitchConstantMismatch.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 Index: test/Verifier/2007-12-21-InvokeParamAttrs.ll =================================================================== --- test/Verifier/2007-12-21-InvokeParamAttrs.ll +++ test/Verifier/2007-12-21-InvokeParamAttrs.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 declare void @foo(i8*) Index: test/Verifier/2008-01-11-VarargAttrs.ll =================================================================== --- test/Verifier/2008-01-11-VarargAttrs.ll +++ test/Verifier/2008-01-11-VarargAttrs.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 %struct = type { } Index: test/Verifier/2009-05-29-InvokeResult1.ll =================================================================== --- test/Verifier/2009-05-29-InvokeResult1.ll +++ test/Verifier/2009-05-29-InvokeResult1.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 declare i32 @v() Index: test/Verifier/2009-05-29-InvokeResult2.ll =================================================================== --- test/Verifier/2009-05-29-InvokeResult2.ll +++ test/Verifier/2009-05-29-InvokeResult2.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 declare i32 @v() Index: test/Verifier/2009-05-29-InvokeResult3.ll =================================================================== --- test/Verifier/2009-05-29-InvokeResult3.ll +++ test/Verifier/2009-05-29-InvokeResult3.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 declare i32 @v() Index: test/Verifier/byval-1.ll =================================================================== --- test/Verifier/byval-1.ll +++ test/Verifier/byval-1.ll @@ -1,2 +1,2 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 declare void @h(i32 byval %num) Index: test/Verifier/gcread-ptrptr.ll =================================================================== --- test/Verifier/gcread-ptrptr.ll +++ test/Verifier/gcread-ptrptr.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 ; PR1633 %meta = type { i8* } Index: test/Verifier/gcroot-alloca.ll =================================================================== --- test/Verifier/gcroot-alloca.ll +++ test/Verifier/gcroot-alloca.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 ; PR1633 %meta = type { i8* } Index: test/Verifier/gcroot-meta.ll =================================================================== --- test/Verifier/gcroot-meta.ll +++ test/Verifier/gcroot-meta.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 ; PR1633 %meta = type { i8* } Index: test/Verifier/gcroot-ptrptr.ll =================================================================== --- test/Verifier/gcroot-ptrptr.ll +++ test/Verifier/gcroot-ptrptr.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 ; PR1633 %meta = type { i8* } Index: test/Verifier/gcwrite-ptrptr.ll =================================================================== --- test/Verifier/gcwrite-ptrptr.ll +++ test/Verifier/gcwrite-ptrptr.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s >& /dev/null +; RUN: not llvm-as < %s > /dev/null 2>&1 ; PR1633 %meta = type { i8* }