mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1099493 - Fix non-ion build failures. r=luke
This commit is contained in:
parent
7382bf87de
commit
485ffc18ab
@ -321,7 +321,11 @@ enum { REG_EIP = 14 };
|
||||
static uint8_t **
|
||||
ContextToPC(CONTEXT *context)
|
||||
{
|
||||
#ifdef JS_CODEGEN_NONE
|
||||
MOZ_CRASH();
|
||||
#else
|
||||
return reinterpret_cast<uint8_t**>(&PC_sig(context));
|
||||
#endif
|
||||
}
|
||||
|
||||
#if defined(JS_CODEGEN_X64)
|
||||
|
Loading…
Reference in New Issue
Block a user