Bug 884298: IonMonkey: Allow inlining of functions containing JSOP_FUNCALL, r=jandem

This commit is contained in:
Hannes Verschore 2013-06-19 15:06:05 +02:00
parent 1a57f2aa38
commit 0d26621ea8

View File

@ -414,12 +414,12 @@ ScriptAnalysis::analyzeBytecode(JSContext *cx)
case JSOP_THROW:
case JSOP_EXCEPTION:
case JSOP_DEBUGGER:
case JSOP_FUNCALL:
isIonInlineable = false;
break;
/* Additional opcodes which can be both compiled both normally and inline. */
case JSOP_ARGUMENTS:
case JSOP_FUNCALL:
case JSOP_FUNAPPLY:
case JSOP_CALLEE:
case JSOP_NOP: