[llvm-commits] [llvm] r120159 - /llvm/trunk/test/FrontendC++/2006-11-20-GlobalSymbols.cpp

Duncan Sands baldrick at free.fr
Thu Nov 25 13:26:21 PST 2010


Author: baldrick
Date: Thu Nov 25 15:26:21 2010
New Revision: 120159

URL: http://llvm.org/viewvc/llvm-project?rev=120159&view=rev
Log:
Judging from the comment, the system assembler is supposed to assemble
the output of this test.  Since it was producing bitcode, that clearly
wasn't happening!  Have it produce target assembler and assemble that
instead.

Modified:
    llvm/trunk/test/FrontendC++/2006-11-20-GlobalSymbols.cpp

Modified: llvm/trunk/test/FrontendC++/2006-11-20-GlobalSymbols.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2006-11-20-GlobalSymbols.cpp?rev=120159&r1=120158&r2=120159&view=diff
==============================================================================
--- llvm/trunk/test/FrontendC++/2006-11-20-GlobalSymbols.cpp (original)
+++ llvm/trunk/test/FrontendC++/2006-11-20-GlobalSymbols.cpp Thu Nov 25 15:26:21 2010
@@ -1,7 +1,7 @@
 // PR1013
 // Check to make sure debug symbols use the correct name for globals and
 // functions.  Will not assemble if it fails to.
-// RUN: %llvmgcc -O0 -g -c %s
+// RUN: %llvmgcc_only -O0 -g -c %s
 
 int foo __asm__("f\001oo");
 





More information about the llvm-commits mailing list