Bug 1140801 - Don't invoke functions on non-ion platforms. r=nbp

This commit is contained in:
Steve Singer 2015-03-07 21:13:00 +01:00
parent b56b9a58b8
commit 5c147b027b

View File

@ -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) +