diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2017-03-14 20:02:42 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2017-03-14 20:02:42 +0000 |
commit | 32f6b5129f21d7e0e0e654d143a02b56509e74ea (patch) | |
tree | 5d96c7149fdf17f5099aba9c1722628caaae8a74 | |
parent | 5bd77e02f76797880fce110420242cbd4686c579 (diff) | |
download | bcm5719-llvm-32f6b5129f21d7e0e0e654d143a02b56509e74ea.tar.gz bcm5719-llvm-32f6b5129f21d7e0e0e654d143a02b56509e74ea.zip |
[cfi] Disable bad-split test on win32.
It appears that the fix only helped Itanium ABI.
llvm-svn: 297775
-rw-r--r-- | compiler-rt/test/cfi/bad-split.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/test/cfi/bad-split.cpp b/compiler-rt/test/cfi/bad-split.cpp index 2f3bef94879..53504bd2710 100644 --- a/compiler-rt/test/cfi/bad-split.cpp +++ b/compiler-rt/test/cfi/bad-split.cpp @@ -1,6 +1,8 @@ // GlobalSplit used to lose type metadata for classes with virtual bases but no virtual methods. // RUN: %clangxx_cfi -o %t1 %s && %t1 +// UNSUPPORTED: win32 + struct Z { }; |