Skip to content

Commit

Permalink
[MERGE #6359 @pleath] Fixing ARM64 build issue
Browse files Browse the repository at this point in the history
Merge pull request #6359 from pleath:arm64build
  • Loading branch information
pleath committed Dec 20, 2019
2 parents cd96553 + 048418e commit 9741bdf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Runtime/Base/ThreadContextInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ ThreadContextInfo::SetValidCallTargetInternal(
#endif
)
{
_guard_check_icall((uintptr_t)callTargetAddress);
_GUARD_CHECK_ICALL((uintptr_t)callTargetAddress);
}

if (PHASE_TRACE1(Js::CFGPhase))
Expand Down
3 changes: 3 additions & 0 deletions lib/Runtime/Base/ThreadContextInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,6 @@ uintptr_t ShiftAddr(const ThreadContextInfo*const context, T* address)

uintptr_t ShiftAddr(const ThreadContextInfo*const context, uintptr_t address);

#ifndef _GUARD_CHECK_ICALL
#define _GUARD_CHECK_ICALL _guard_check_icall
#endif

0 comments on commit 9741bdf

Please sign in to comment.