Revision: 7159
Author: [email protected]
Date: Mon Mar 14 08:09:50 2011
Log: Fix presubmit failure introduced by r7158.
[email protected]
Review URL: http://codereview.chromium.org/6685047
http://code.google.com/p/v8/source/detail?r=7159
Modified:
/branches/bleeding_edge/src/x64/lithium-codegen-x64.cc
/branches/bleeding_edge/src/x64/lithium-x64.cc
=======================================
--- /branches/bleeding_edge/src/x64/lithium-codegen-x64.cc Mon Mar 14
07:42:14 2011
+++ /branches/bleeding_edge/src/x64/lithium-codegen-x64.cc Mon Mar 14
08:09:50 2011
@@ -788,7 +788,8 @@
DeoptimizeIf(zero, instr->environment());
}
- // Sign extend eax to edx. (We are using only the low 32 bits of the
values.)
+ // Sign extend eax to edx.
+ // (We are using only the low 32 bits of the values.)
__ cdq();
// Check for (0 % -x) that will produce negative zero.
=======================================
--- /branches/bleeding_edge/src/x64/lithium-x64.cc Mon Mar 14 07:42:14 2011
+++ /branches/bleeding_edge/src/x64/lithium-x64.cc Mon Mar 14 08:09:50 2011
@@ -1355,8 +1355,8 @@
LModI* mod = new LModI(value, UseOrConstant(instr->right()), NULL);
result = DefineSameAsFirst(mod);
} else {
- // The temporary operand is necessary to ensure that right is not
allocated
- // into edx.
+ // The temporary operand is necessary to ensure that right is not
+ // allocated into edx.
LOperand* temp = FixedTemp(rdx);
LOperand* value = UseFixed(instr->left(), rax);
LOperand* divisor = UseRegister(instr->right());
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev