summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clang/test/CodeGenCXX/vtable-debug-info.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/vtable-debug-info.cpp b/clang/test/CodeGenCXX/vtable-debug-info.cpp
index 51eb0e37152..c51221cd7e6 100644
--- a/clang/test/CodeGenCXX/vtable-debug-info.cpp
+++ b/clang/test/CodeGenCXX/vtable-debug-info.cpp
@@ -1,6 +1,9 @@
// RUN: %clang -c -g %s -o /dev/null
// Radar 8730409
+// FIXME: This test crashes on Windows.
+#ifndef _WIN32
+
class foo {
public:
#define x(a) virtual void v ## a (void)
@@ -307,3 +310,5 @@ x(300);
};
foo b;
+
+#endif
OpenPOWER on IntegriCloud