diff options
-rw-r--r-- | compiler-rt/test/asan/TestCases/Linux/odr-vtable.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/Linux/odr-vtable.cc b/compiler-rt/test/asan/TestCases/Linux/odr-vtable.cc index fdbab4bb1fd..6bcfa1f711d 100644 --- a/compiler-rt/test/asan/TestCases/Linux/odr-vtable.cc +++ b/compiler-rt/test/asan/TestCases/Linux/odr-vtable.cc @@ -3,6 +3,9 @@ // RUN: %clangxx_asan -fno-rtti %s %ld_flags_rpath_exe1 %ld_flags_rpath_exe2 -o %t // RUN: %env_asan_opts=fast_unwind_on_malloc=0:detect_odr_violation=2 not %run %t 2>&1 | FileCheck %s +// FIXME: Somehow does not detect ODR on powerpc64be +// XFAIL: powerpc64 + struct XYZ { virtual void foo(); }; |