diff options
author | Reid Kleckner <rnk@google.com> | 2018-10-31 00:35:46 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2018-10-31 00:35:46 +0000 |
commit | 3e27306565554fbf8f1c93a55f278856fe02c22e (patch) | |
tree | e1d3ecb011aec12873ef4706bd0e46d8036765fe /compiler-rt/lib/sanitizer_common | |
parent | 487b4fb6d7363d4e471acbe2478c063c7064632f (diff) | |
download | bcm5719-llvm-3e27306565554fbf8f1c93a55f278856fe02c22e.tar.gz bcm5719-llvm-3e27306565554fbf8f1c93a55f278856fe02c22e.zip |
[asan] Remove stale -fno-exceptions flag in sanitizer_common as well
llvm-svn: 345685
Diffstat (limited to 'compiler-rt/lib/sanitizer_common')
-rw-r--r-- | compiler-rt/lib/sanitizer_common/tests/CMakeLists.txt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler-rt/lib/sanitizer_common/tests/CMakeLists.txt b/compiler-rt/lib/sanitizer_common/tests/CMakeLists.txt index 4642c59ecc9..75998c8bd29 100644 --- a/compiler-rt/lib/sanitizer_common/tests/CMakeLists.txt +++ b/compiler-rt/lib/sanitizer_common/tests/CMakeLists.txt @@ -58,11 +58,6 @@ set(SANITIZER_TEST_CFLAGS_COMMON -Wno-non-virtual-dtor -Wno-gnu-zero-variadic-macro-arguments) -if(MSVC) - # Disable exceptions on Windows until they work reliably. - list(APPEND SANITIZER_TEST_CFLAGS_COMMON -fno-exceptions -DGTEST_HAS_SEH=0) -endif() - # -gline-tables-only must be enough for these tests, so use it if possible. if(COMPILER_RT_TEST_COMPILER_ID MATCHES "Clang") list(APPEND SANITIZER_TEST_CFLAGS_COMMON -gline-tables-only) |