summaryrefslogtreecommitdiff
path: root/unittests/Support/CrashRecoveryTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/Support/CrashRecoveryTest.cpp')
-rw-r--r--unittests/Support/CrashRecoveryTest.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/unittests/Support/CrashRecoveryTest.cpp b/unittests/Support/CrashRecoveryTest.cpp
index dbb0db5767937..33d87a1c0e4a9 100644
--- a/unittests/Support/CrashRecoveryTest.cpp
+++ b/unittests/Support/CrashRecoveryTest.cpp
@@ -17,11 +17,15 @@
#include <windows.h>
#endif
+extern "C" const char *__asan_default_options() {
+ return "allow_user_segv_handler=1";
+}
+
using namespace llvm;
using namespace llvm::sys;
static int GlobalInt = 0;
-static void nullDeref() { *(volatile int *)nullptr = 0; }
+static void nullDeref() { *(volatile int *)0x10 = 0; }
static void incrementGlobal() { ++GlobalInt; }
static void llvmTrap() { LLVM_BUILTIN_TRAP; }