This value is already defaulted to true in asan_internal.h.
Allow the value to be overriden in cases where exceptions are unavailable.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
I assume that this has no real effect because ASAN_HAS_EXCEPTIONS defaults to 1 if undefined?
Comment Actions
As far as I can tell, that's correct. From asan_internal.h:
// If set, asan will intercept C++ exception api call(s). #ifndef ASAN_HAS_EXCEPTIONS # define ASAN_HAS_EXCEPTIONS 1 #endif