From c98741c79e83ee64592fb82b9577119958793d80 Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Wed, 24 May 2017 17:58:09 +0000 Subject: Revert "Attempt to pacify ASan and UBSan reports in CrashRecovery tests" It's not needed after r303729. This reverts commit r303311. llvm-svn: 303783 --- llvm/unittests/Support/CrashRecoveryTest.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'llvm/unittests/Support/CrashRecoveryTest.cpp') diff --git a/llvm/unittests/Support/CrashRecoveryTest.cpp b/llvm/unittests/Support/CrashRecoveryTest.cpp index 33d87a1c0e4..dbb0db57679 100644 --- a/llvm/unittests/Support/CrashRecoveryTest.cpp +++ b/llvm/unittests/Support/CrashRecoveryTest.cpp @@ -17,15 +17,11 @@ #include #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 *)0x10 = 0; } +static void nullDeref() { *(volatile int *)nullptr = 0; } static void incrementGlobal() { ++GlobalInt; } static void llvmTrap() { LLVM_BUILTIN_TRAP; } -- cgit v1.2.3