1344477 - Part 1: Add JSOP_CALL_IGNORES_RV for function call that ignores return value.

This commit is contained in:
Gaming4JC 2019-07-14 19:04:34 -04:00 committed by Roy Tam
commit 417aa02122
22 changed files with 243 additions and 92 deletions

View file

@ -3297,6 +3297,12 @@ BaselineCompiler::emit_JSOP_CALL()
return emitCall();
}
bool
BaselineCompiler::emit_JSOP_CALL_IGNORES_RV()
{
return emitCall();
}
bool
BaselineCompiler::emit_JSOP_CALLITER()
{