Commit 1dd8136d authored by vegorov@chromium.org's avatar vegorov@chromium.org

Fix presubmit failure introduced by r7158.

TBR=kmillikin@chromium.org

Review URL: http://codereview.chromium.org/6685047

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7159 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 9b311c21
......@@ -788,7 +788,8 @@ void LCodeGen::DoModI(LModI* instr) {
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.
......
......@@ -1355,8 +1355,8 @@ LInstruction* LChunkBuilder::DoMod(HMod* instr) {
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());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment