aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGenCXX/vtable-debug-info.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/CodeGenCXX/vtable-debug-info.cpp b/test/CodeGenCXX/vtable-debug-info.cpp
index 51eb0e3715..c51221cd7e 100644
--- a/test/CodeGenCXX/vtable-debug-info.cpp
+++ b/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