[llvm-commits] [llvm] r52188 - /llvm/trunk/test/FrontendC++/2006-11-30-NoCompileUnit.cpp

Dale Johannesen dalej at apple.com
Tue Jun 10 11:01:54 PDT 2008


Author: johannes
Date: Tue Jun 10 13:01:54 2008
New Revision: 52188

URL: http://llvm.org/viewvc/llvm-project?rev=52188&view=rev
Log:
Use %link not %llvmgxx (which includes -c) to do the link.
The test still fails because an expected symbol is not
present, and I don't see why it should be.


Modified:
    llvm/trunk/test/FrontendC++/2006-11-30-NoCompileUnit.cpp

Modified: llvm/trunk/test/FrontendC++/2006-11-30-NoCompileUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2006-11-30-NoCompileUnit.cpp?rev=52188&r1=52187&r2=52188&view=diff

==============================================================================
--- llvm/trunk/test/FrontendC++/2006-11-30-NoCompileUnit.cpp (original)
+++ llvm/trunk/test/FrontendC++/2006-11-30-NoCompileUnit.cpp Tue Jun 10 13:01:54 2008
@@ -3,7 +3,7 @@
 // RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | \
 // RUN:   llc --disable-fp-elim -o NoCompileUnit.s -f
 // RUN: %compile_c NoCompileUnit.s -o NoCompileUnit.o
-// RUN: %compile_cxx NoCompileUnit.o -o NoCompileUnit.exe
+// RUN: %link NoCompileUnit.o -o NoCompileUnit.exe
 // RUN: echo {break main\nrun\np NoCompileUnit::pubname} > %t2
 // RUN: gdb -q -batch -n -x %t2 NoCompileUnit.exe | \
 // RUN:   tee NoCompileUnit.out | not grep {"low == high"}





More information about the llvm-commits mailing list