Reviewers: Erik Corry, Description: ARM: Update the generation of the name for GenericBinaryOpStub
Please review this at http://codereview.chromium.org/2840011/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/arm/codegen-arm.cc Index: src/arm/codegen-arm.cc =================================================================== --- src/arm/codegen-arm.cc (revision 4892) +++ src/arm/codegen-arm.cc (working copy) @@ -7964,10 +7964,11 @@ } OS::SNPrintF(Vector<char>(name_, len), - "GenericBinaryOpStub_%s_%s%s", + "GenericBinaryOpStub_%s_%s%s_%s", op_name, overwrite_name, - specialized_on_rhs_ ? "_ConstantRhs" : 0); + specialized_on_rhs_ ? "_ConstantRhs" : "", + BinaryOpIC::GetName(runtime_operands_type_)); return name_; } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
