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

Commit

Permalink
Fix for missing symbol OnHijackTripThread
Browse files Browse the repository at this point in the history
PR #6522 changed from OnHijackScalarTripThread to OnHijackTripThread; however,
missed changing this definition for arm windows.
  • Loading branch information
jashoo committed Aug 8, 2016
1 parent deb00ad commit 49b8766
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/vm/amd64/unixasmhelpers.S
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ NESTED_END JIT_RareDisableHelper, _TEXT
#ifdef FEATURE_HIJACK

//------------------------------------------------
// OnHijackScalarTripThread
// OnHijackTripThread
//
NESTED_ENTRY OnHijackTripThread, _TEXT, NoHandler

Expand Down
15 changes: 1 addition & 14 deletions src/vm/arm/asmhelpers.asm
Original file line number Diff line number Diff line change
Expand Up @@ -1690,22 +1690,9 @@ Done

#ifdef FEATURE_HIJACK

; ------------------------------------------------------------------
; Hijack function for functions which return a reference type
NESTED_ENTRY OnHijackGCTripThread
PROLOG_PUSH {r0,r4-r11,lr}

CHECK_STACK_ALIGNMENT

mov r0, sp
bl OnHijackWorker

EPILOG_POP {r0,r4-r11,pc}
NESTED_END

; ------------------------------------------------------------------
; Hijack function for functions which return a value type
NESTED_ENTRY OnHijackScalarTripThread
NESTED_ENTRY OnHijackTripThread
PROLOG_PUSH {r0,r4-r11,lr}

PROLOG_VPUSH {d0-d3} ; saving as d0-d3 can have the floating point return value
Expand Down

0 comments on commit 49b8766

Please sign in to comment.