Revision: 18853
Author:   [email protected]
Date:     Mon Jan 27 14:06:43 2014 UTC
Log:      A64: Bug fix in LCodeGen::DoMathFloorOfDiv.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/147733003
http://code.google.com/p/v8/source/detail?r=18853

Modified:
 /branches/experimental/a64/src/a64/lithium-codegen-a64.cc

=======================================
--- /branches/experimental/a64/src/a64/lithium-codegen-a64.cc Mon Jan 27 12:55:12 2014 UTC +++ /branches/experimental/a64/src/a64/lithium-codegen-a64.cc Mon Jan 27 14:06:43 2014 UTC
@@ -3802,7 +3802,7 @@
   if (instr->hydrogen()->CheckFlag(HValue::kCanOverflow)) {
     // The V flag will be set iff left == kMinInt.
     __ Cmp(left, 1);
-    __ Ccmp(right, -1, ZFlag, vs);
+    __ Ccmp(right, -1, NoFlag, vs);
     DeoptimizeIf(eq, instr->environment());
   }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to