Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

fix CoreCLR build errors with clang5.0. #15477

Merged
merged 2 commits into from Dec 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/ToolBox/superpmi/superpmi-shared/methodcontext.cpp
Expand Up @@ -299,8 +299,6 @@ void MethodContext::MethodInitHelperFile(HANDLE hFile)

void MethodContext::MethodInitHelper(unsigned char* buff2, unsigned int totalLen)
{
MethodContext::MethodContext();

unsigned int buffIndex = 0;
unsigned int localsize = 0;
unsigned char canary = 0xff;
Expand Down
1 change: 1 addition & 0 deletions src/pal/inc/pal.h
Expand Up @@ -5921,6 +5921,7 @@ class NativeExceptionHolderFactory
EXCEPTION_DISPOSITION disposition = EXCEPTION_CONTINUE_EXECUTION; \
auto exceptionFilter = [&disposition, &__param](PAL_SEHException& ex) \
{ \
(void)__param; \
disposition = dispositionExpression; \
_ASSERTE(disposition != EXCEPTION_CONTINUE_EXECUTION); \
return disposition; \
Expand Down