Revision: 4904
Author: [email protected]
Date: Mon Jun 21 03:34:25 2010
Log: ARM: Update the generation of the name for GenericBinaryOpStub
Review URL: http://codereview.chromium.org/2840011
http://code.google.com/p/v8/source/detail?r=4904

Modified:
 /branches/bleeding_edge/src/arm/codegen-arm.cc

=======================================
--- /branches/bleeding_edge/src/arm/codegen-arm.cc      Thu Jun 17 14:51:51 2010
+++ /branches/bleeding_edge/src/arm/codegen-arm.cc      Mon Jun 21 03:34:25 2010
@@ -7984,10 +7984,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

Reply via email to