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:
svenpanne@chromium.org 2013-07-17 08:02:08 +00:00
parent fbb8b84039
commit 0e99e77143
2 changed files with 0 additions and 18 deletions

View File

@ -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,

View File

@ -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,