No bug - Remove unused IonBuilder::jsop_deflocalfun. rs=Ms2ger on IRC

This commit is contained in:
Jan de Mooij 2012-12-18 16:56:23 +01:00
parent 4b9183ba5d
commit 84e8e73e7f
2 changed files with 0 additions and 16 deletions

View File

@ -6659,21 +6659,6 @@ IonBuilder::jsop_lambda(JSFunction *fun)
return resumeAfter(ins);
}
bool
IonBuilder::jsop_deflocalfun(uint32_t local, JSFunction *fun)
{
JS_ASSERT(script()->analysis()->usesScopeChain());
MLambda *ins = MLambda::New(current->scopeChain(), fun);
current->add(ins);
current->push(ins);
current->setLocal(local);
current->pop();
return resumeAfter(ins);
}
bool
IonBuilder::jsop_defvar(uint32_t index)
{

View File

@ -375,7 +375,6 @@ class IonBuilder : public MIRGenerator
bool jsop_regexp(RegExpObject *reobj);
bool jsop_object(JSObject *obj);
bool jsop_lambda(JSFunction *fun);
bool jsop_deflocalfun(uint32_t local, JSFunction *fun);
bool jsop_this();
bool jsop_typeof();
bool jsop_toid();