Revision: 5593
Author: [email protected]
Date: Tue Oct  5 23:09:05 2010
Log: Land for Rodolph Perfetta.

Added a missing SetCC in the ARM CompareStub.

BUG=none
TEST=none
http://code.google.com/p/v8/source/detail?r=5593

Modified:
 /branches/bleeding_edge/src/arm/code-stubs-arm.cc

=======================================
--- /branches/bleeding_edge/src/arm/code-stubs-arm.cc Wed Sep 15 03:22:55 2010 +++ /branches/bleeding_edge/src/arm/code-stubs-arm.cc Tue Oct 5 23:09:05 2010
@@ -935,7 +935,7 @@
     __ orr(r2, r1, r0);
     __ tst(r2, Operand(kSmiTagMask));
     __ b(ne, &not_two_smis);
-    __ sub(r0, r1, r0);
+    __ sub(r0, r1, r0, SetCC);
     __ b(vc, &smi_done);
     // Correct the sign in case of overflow.
     __ rsb(r0, r0, Operand(0, RelocInfo::NONE));

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to