[PATCH] D29458: [asan] Move exception code to sanitizer_common.

Kostya Serebryany via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 2 10:33:42 PST 2017


kcc added inline comments.


================
Comment at: lib/sanitizer_common/sanitizer_common.h:384
 bool IsHandledDeadlySignal(int signum);
+#if SANITIZER_WINDOWS
+bool IsHandledDeadlyException(DWORD exceptionCode);
----------------
no #if please. 
The only #if we accept (except for some special files) is a single #if around the entire file. 


https://reviews.llvm.org/D29458





More information about the llvm-commits mailing list