Commit 0282f707 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Fix presumbit.

TBR=ager@chromium.org
Review URL: http://codereview.chromium.org/6250031

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6478 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 06515b6f
......@@ -2442,7 +2442,7 @@ void TypeRecordingBinaryOpStub::GenerateOptimisticSmiOperation(
switch (op_) {
case Token::ADD:
__ add(right, left, Operand(right), SetCC); // Add optimistically.
__ add(right, left, Operand(right), SetCC); // Add optimistically.
__ Ret(vc);
__ sub(right, right, Operand(left)); // Revert optimistic add.
break;
......@@ -2469,7 +2469,6 @@ void TypeRecordingBinaryOpStub::GenerateVFPOperation(
default:
UNREACHABLE();
}
}
......
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