Reviewers: m.m.capewell,

Message:
Committed patchset #1 manually as r18853 (presubmit successful).

Description:
A64: Bug fix in LCodeGen::DoMathFloorOfDiv.

BUG=
[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=18853

Please review this at https://codereview.chromium.org/147733003/

SVN Base: https://v8.googlecode.com/svn/branches/experimental/a64

Affected files (+1, -1 lines):
  M src/a64/lithium-codegen-a64.cc


Index: src/a64/lithium-codegen-a64.cc
diff --git a/src/a64/lithium-codegen-a64.cc b/src/a64/lithium-codegen-a64.cc
index e986b8318a2a315a35bd0903b5769a5699144353..4dc7bc714ff26b142b6eaa20bf5bf46d21829fe8 100644
--- a/src/a64/lithium-codegen-a64.cc
+++ b/src/a64/lithium-codegen-a64.cc
@@ -3732,7 +3732,7 @@ void LCodeGen::DoMathFloorOfDiv(LMathFloorOfDiv* instr) {
   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