Revision: 5963
Author: [email protected]
Date: Fri Dec 10 04:12:06 2010
Log: ARM: Fix missing SetCC in crankshaft code emitted when running with
the --debug-code flag.

Review URL: http://codereview.chromium.org/5736003
http://code.google.com/p/v8/source/detail?r=5963

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

=======================================
--- /branches/bleeding_edge/src/arm/lithium-codegen-arm.cc Tue Dec 7 03:31:57 2010 +++ /branches/bleeding_edge/src/arm/lithium-codegen-arm.cc Fri Dec 10 04:12:06 2010
@@ -136,7 +136,7 @@
       Label loop;
       __ bind(&loop);
       __ push(r2);
-      __ sub(r0, r0, Operand(1));
+      __ sub(r0, r0, Operand(1), SetCC);
       __ b(ne, &loop);
     } else {
       __ sub(sp,  sp, Operand(slots * kPointerSize));

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

Reply via email to