mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
Bug 1140801 - Don't invoke functions on non-ion platforms. r=nbp
This commit is contained in:
parent
e508afcd8a
commit
7936390cff
@ -8203,6 +8203,8 @@ static const FloatRegisterSet NonVolatileSimdRegs = SupportsSimd ? NonVolatileRe
|
||||
static const unsigned FramePushedAfterSave = NonVolatileRegs.gprs().size() * sizeof(intptr_t) +
|
||||
NonVolatileRegs.fpus().getPushSizeInBytes() +
|
||||
sizeof(double);
|
||||
#elif defined(JS_CODEGEN_NONE)
|
||||
static const unsigned FramePushedAfterSave = 0;
|
||||
#else
|
||||
static const unsigned FramePushedAfterSave =
|
||||
SupportsSimd ? NonVolatileRegs.gprs().size() * sizeof(intptr_t) +
|
||||
|
Loading…
Reference in New Issue
Block a user