Bug 807464 - Increase Ion script size limit to 2000. r=dvander

This commit is contained in:
Sean Stangl 2012-12-10 15:27:47 -08:00
parent 95d842aeda
commit 0281a13d0d

View File

@ -1288,7 +1288,7 @@ CheckScriptSize(JSScript *script)
if (!js_IonOptions.limitScriptSize)
return true;
static const uint32_t MAX_SCRIPT_SIZE = 1500;
static const uint32_t MAX_SCRIPT_SIZE = 2000;
static const uint32_t MAX_LOCALS_AND_ARGS = 256;
if (script->length > MAX_SCRIPT_SIZE) {