[cfe-commits] r130682 - /cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp

NAKAMURA Takumi geek4civic at gmail.com
Sun May 1 21:50:00 PDT 2011


Author: chapuni
Date: Sun May  1 23:50:00 2011
New Revision: 130682

URL: http://llvm.org/viewvc/llvm-project?rev=130682&view=rev
Log:
test/CodeGenCXX/vtable-debug-info.cpp: It does not crash on mingw.

FIXME: It would crash with -integrated-as. Implement -g on MCCOFF.

Modified:
    cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp

Modified: cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp?rev=130682&r1=130681&r2=130682&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp Sun May  1 23:50:00 2011
@@ -1,9 +1,10 @@
 // RUN: %clang -c -g %s -o /dev/null
 // Radar 8730409
-// XFAIL: win32,mingw
+// XFAIL: win32
 
-// FIXME: This test crashes on Windows.
-#ifdef _WIN32
+// FIXME: This test crashes on *-pc-win32
+// for lack of debugging support on -integrated-as (MCCOFF).
+#ifdef _MSC_VER
 
 #error this test must xfail
 





More information about the cfe-commits mailing list