We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebd26cc commit de797ccCopy full SHA for de797cc
llvm/lib/Support/CrashRecoveryContext.cpp
@@ -266,7 +266,8 @@ static LONG CALLBACK ExceptionHandler(PEXCEPTION_POINTERS ExceptionInfo)
266
267
// Handle the crash
268
const_cast<CrashRecoveryContextImpl *>(CRCI)->HandleCrash(
269
- (int)ExceptionInfo->ExceptionRecord->ExceptionCode, ExceptionInfo);
+ (int)ExceptionInfo->ExceptionRecord->ExceptionCode,
270
+ reinterpret_cast<uintptr_t>(ExceptionInfo));
271
272
// Note that we don't actually get here because HandleCrash calls
273
// longjmp, which means the HandleCrash function never returns.
0 commit comments