diff options
-rw-r--r-- | test/asan/TestCases/Windows/dll_global_dead_strip.c | 3 | ||||
-rw-r--r-- | test/asan/TestCases/Windows/global_dead_strip.c | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/test/asan/TestCases/Windows/dll_global_dead_strip.c b/test/asan/TestCases/Windows/dll_global_dead_strip.c index e28d48a1c..2664f5baf 100644 --- a/test/asan/TestCases/Windows/dll_global_dead_strip.c +++ b/test/asan/TestCases/Windows/dll_global_dead_strip.c @@ -5,9 +5,6 @@ // RUN: %clang_cl_asan -LD -O2 %s -Fe%t.dll -link -opt:ref // RUN: %env_asan_opts=report_globals=2 %run %t %t.dll 2>&1 | FileCheck %s --check-prefix=STRIP -// FIXME: Remove the XFAIL once the LLVM instrumentation change lands. -// XFAIL: * - #include <stdio.h> int dead_global = 42; diff --git a/test/asan/TestCases/Windows/global_dead_strip.c b/test/asan/TestCases/Windows/global_dead_strip.c index df5f58ab5..e68549050 100644 --- a/test/asan/TestCases/Windows/global_dead_strip.c +++ b/test/asan/TestCases/Windows/global_dead_strip.c @@ -3,9 +3,6 @@ // RUN: %clang_cl_asan /O2 %s /Fe%t.exe -link -opt:ref // RUN: %env_asan_opts=report_globals=2 %t.exe 2>&1 | FileCheck %s --check-prefix=STRIP -// FIXME: Remove the XFAIL once the LLVM instrumentation change lands. -// XFAIL: * - #include <stdio.h> int dead_global = 42; int live_global = 0; |