diff options
author | Francois Pichet <pichet2000@gmail.com> | 2010-12-20 05:44:28 +0000 |
---|---|---|
committer | Francois Pichet <pichet2000@gmail.com> | 2010-12-20 05:44:28 +0000 |
commit | bea85d84778845edd69851dd4284a79731fb7a28 (patch) | |
tree | 57d549128573e3c6b7ceb52b30c4c89a47e20e4b /clang/test/CodeGenCXX/vtable-debug-info.cpp | |
parent | e919ba6516bebf96a90e978d8b4eeb0e18f6540b (diff) | |
download | bcm5719-llvm-bea85d84778845edd69851dd4284a79731fb7a28.tar.gz bcm5719-llvm-bea85d84778845edd69851dd4284a79731fb7a28.zip |
XFAIL vtable-debug-info.cpp on WIN32 and fix curly brace.
llvm-svn: 122230
Diffstat (limited to 'clang/test/CodeGenCXX/vtable-debug-info.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/vtable-debug-info.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/vtable-debug-info.cpp b/clang/test/CodeGenCXX/vtable-debug-info.cpp index c51221cd7e6..c355406fae4 100644 --- a/clang/test/CodeGenCXX/vtable-debug-info.cpp +++ b/clang/test/CodeGenCXX/vtable-debug-info.cpp @@ -1,9 +1,13 @@ // RUN: %clang -c -g %s -o /dev/null // Radar 8730409 +// XFAIL: win32 // FIXME: This test crashes on Windows. -#ifndef _WIN32 +#ifdef _WIN32 +#error this test must xfail + +#else class foo { public: #define x(a) virtual void v ## a (void) |