Skip to content

Commit

Permalink
fix 32 bit oops from ed5a8fc
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Dec 17, 2014
1 parent 9c49ee7 commit a2ff1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ void jl_throw_in_ctx(jl_value_t *excpt, CONTEXT *ctxThread, int bt)
ctxThread->Rsp = Rsp;
ctxThread->Rip = (DWORD64)&jl_rethrow;
#elif defined(_CPU_X86_)
*(DWORD32*)Rsp = 0;
*(DWORD32*)Esp = 0;
ctxThread->Esp = Esp;
ctxThread->Eip = (DWORD)&jl_rethrow;
#endif
Expand Down

0 comments on commit a2ff1ea

Please sign in to comment.