Revision: 8860
Author:   [email protected]
Date:     Tue Aug  9 01:16:32 2011
Log:      Fixed extremely important, mission-critical presubmit warnings...
Review URL: http://codereview.chromium.org/7600019
http://code.google.com/p/v8/source/detail?r=8860

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

=======================================
--- /branches/bleeding_edge/src/arm/lithium-codegen-arm.cc Tue Aug 9 00:59:00 2011 +++ /branches/bleeding_edge/src/arm/lithium-codegen-arm.cc Tue Aug 9 01:16:32 2011
@@ -1679,8 +1679,8 @@
         __ b(ne, &not_heap_number);
__ vldr(dbl_scratch, FieldMemOperand(reg, HeapNumber::kValueOffset));
         __ VFPCompareAndSetFlags(dbl_scratch, 0.0);
-        __ b(vs, false_label); // NaN -> false.
-        __ b(eq, false_label); // +0, -0 -> false.
+        __ b(vs, false_label);  // NaN -> false.
+        __ b(eq, false_label);  // +0, -0 -> false.
         __ b(true_label);
         __ bind(&not_heap_number);
       } else if (expected.Contains(ToBooleanStub::INTERNAL_OBJECT)) {

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

Reply via email to