Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: src/a64/lithium-codegen-a64.cc

Issue 147733003: A64: Bug fix in LCodeGen::DoMathFloorOfDiv. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698