diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-05-02 04:50:00 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-05-02 04:50:00 +0000 |
commit | e95a8662a63b823043a582ce5d862542afe8b21e (patch) | |
tree | 31862e9c841f939dbeca94d9b8c7897308a3ccca | |
parent | 45dce81969fe8915e53b13b81ab75a02ffe641e0 (diff) |
test/CodeGenCXX/vtable-debug-info.cpp: It does not crash on mingw.
FIXME: It would crash with -integrated-as. Implement -g on MCCOFF.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130682 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/vtable-debug-info.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/CodeGenCXX/vtable-debug-info.cpp b/test/CodeGenCXX/vtable-debug-info.cpp index a008f7e110..9294d20e72 100644 --- a/test/CodeGenCXX/vtable-debug-info.cpp +++ b/test/CodeGenCXX/vtable-debug-info.cpp @@ -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 |