Remove now-redundant llvm-as invocations.

llvm-svn: 90626
diff --git a/llvm/test/FrontendC++/2006-11-06-StackTrace.cpp b/llvm/test/FrontendC++/2006-11-06-StackTrace.cpp
index 24eeda8..3732cb9 100644
--- a/llvm/test/FrontendC++/2006-11-06-StackTrace.cpp
+++ b/llvm/test/FrontendC++/2006-11-06-StackTrace.cpp
@@ -1,6 +1,6 @@
 // This is a regression test on debug info to make sure that we can get a
 // meaningful stack trace from a C++ program.
-// RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | \
+// RUN: %llvmgcc -S -O0 -g %s -o - | \
 // RUN:    llc --disable-fp-elim -o %t.s -O0 -relocation-model=pic
 // RUN: %compile_c %t.s -o %t.o
 // RUN: %link %t.o -o %t.exe
diff --git a/llvm/test/FrontendC++/2006-11-30-NoCompileUnit.cpp b/llvm/test/FrontendC++/2006-11-30-NoCompileUnit.cpp
index cd8b988..242a37e 100644
--- a/llvm/test/FrontendC++/2006-11-30-NoCompileUnit.cpp
+++ b/llvm/test/FrontendC++/2006-11-30-NoCompileUnit.cpp
@@ -1,6 +1,6 @@
 // This is a regression test on debug info to make sure we don't hit a compile 
 // unit size issue with gdb.
-// RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | \
+// RUN: %llvmgcc -S -O0 -g %s -o - | \
 // RUN:   llc --disable-fp-elim -o NoCompileUnit.s
 // RUN: %compile_c NoCompileUnit.s -o NoCompileUnit.o
 // RUN: %link NoCompileUnit.o -o NoCompileUnit.exe
diff --git a/llvm/test/FrontendC++/2006-11-30-Pubnames.cpp b/llvm/test/FrontendC++/2006-11-30-Pubnames.cpp
index 64214a8..3a08b3c 100644
--- a/llvm/test/FrontendC++/2006-11-30-Pubnames.cpp
+++ b/llvm/test/FrontendC++/2006-11-30-Pubnames.cpp
@@ -1,6 +1,6 @@
 // This is a regression test on debug info to make sure that we can access 
 // qualified global names.
-// RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | \
+// RUN: %llvmgcc -S -O0 -g %s -o - | \
 // RUN:   llc --disable-fp-elim -o %t.s -O0
 // RUN: %compile_c %t.s -o %t.o
 // RUN: %link %t.o -o %t.exe
diff --git a/llvm/test/FrontendC++/2009-07-15-LineNumbers.cpp b/llvm/test/FrontendC++/2009-07-15-LineNumbers.cpp
index d603aa7..5b448ea 100644
--- a/llvm/test/FrontendC++/2009-07-15-LineNumbers.cpp
+++ b/llvm/test/FrontendC++/2009-07-15-LineNumbers.cpp
@@ -1,6 +1,6 @@
 // This is a regression test on debug info to make sure that we can
 // print line numbers in asm.
-// RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | \
+// RUN: %llvmgcc -S -O0 -g %s -o - | \
 // RUN:    llc --disable-fp-elim -O0 -relocation-model=pic | grep {SrcLine 25}
 
 #include <stdlib.h>