Removed unused HOptimizedGraphBuilder::BuildCallSetter method.
R=mstarzinger@chromium.org Review URL: https://codereview.chromium.org/19235011 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15696 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
fbb8b84039
commit
0e99e77143
@ -4611,19 +4611,6 @@ HInstruction* HOptimizedGraphBuilder::BuildStoreNamedGeneric(
|
||||
}
|
||||
|
||||
|
||||
HInstruction* HOptimizedGraphBuilder::BuildCallSetter(
|
||||
HValue* object,
|
||||
HValue* value,
|
||||
Handle<Map> map,
|
||||
Handle<JSFunction> setter,
|
||||
Handle<JSObject> holder) {
|
||||
AddCheckConstantFunction(holder, object, map);
|
||||
Add<HPushArgument>(object);
|
||||
Add<HPushArgument>(value);
|
||||
return new(zone()) HCallConstantFunction(setter, 2);
|
||||
}
|
||||
|
||||
|
||||
HInstruction* HOptimizedGraphBuilder::BuildStoreNamedMonomorphic(
|
||||
HValue* object,
|
||||
Handle<String> name,
|
||||
|
@ -1842,11 +1842,6 @@ class HOptimizedGraphBuilder: public HGraphBuilder, public AstVisitor {
|
||||
HInstruction* BuildStoreNamedGeneric(HValue* object,
|
||||
Handle<String> name,
|
||||
HValue* value);
|
||||
HInstruction* BuildCallSetter(HValue* object,
|
||||
HValue* value,
|
||||
Handle<Map> map,
|
||||
Handle<JSFunction> setter,
|
||||
Handle<JSObject> holder);
|
||||
HInstruction* BuildStoreNamedMonomorphic(HValue* object,
|
||||
Handle<String> name,
|
||||
HValue* value,
|
||||
|
Loading…
Reference in New Issue
Block a user