diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-12-28 05:20:27 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-12-28 05:20:27 +0000 |
commit | ab768a85f686d8334d9c96752e5da1ee14c119cb (patch) | |
tree | cff5477b59f667597383c7da9718ad002e4b0a2e /libcxx/include/__debug | |
parent | 687d3213f0c26fdd06f54544ef74cfd4d628a35a (diff) | |
download | bcm5719-llvm-ab768a85f686d8334d9c96752e5da1ee14c119cb.tar.gz bcm5719-llvm-ab768a85f686d8334d9c96752e5da1ee14c119cb.zip |
Fix debug mode build w/o exceptions
llvm-svn: 290652
Diffstat (limited to 'libcxx/include/__debug')
-rw-r--r-- | libcxx/include/__debug | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcxx/include/__debug b/libcxx/include/__debug index e3a5ec965b4..e0cef09ee0a 100644 --- a/libcxx/include/__debug +++ b/libcxx/include/__debug @@ -82,6 +82,9 @@ bool __libcpp_set_debug_function(__libcpp_debug_function_type __func); // Setup the throwing debug handler during dynamic initialization. #if _LIBCPP_DEBUG_LEVEL >= 1 && defined(_LIBCPP_DEBUG_USE_EXCEPTIONS) +# if defined(_LIBCPP_NO_EXCEPTIONS) +# error _LIBCPP_DEBUG_USE_EXCEPTIONS cannot be used when exceptions are disabled. +# endif static bool __init_dummy = __libcpp_set_debug_function(__libcpp_throw_debug_function); #endif |