Revision: 2964 Author: [email protected] Date: Wed Sep 23 07:06:14 2009 Log: Fix lint error.
[email protected] Review URL: http://codereview.chromium.org/230002 http://code.google.com/p/v8/source/detail?r=2964 Modified: /branches/bleeding_edge/src/x64/macro-assembler-x64.cc ======================================= --- /branches/bleeding_edge/src/x64/macro-assembler-x64.cc Wed Sep 23 06:04:07 2009 +++ /branches/bleeding_edge/src/x64/macro-assembler-x64.cc Wed Sep 23 07:06:14 2009 @@ -525,7 +525,7 @@ if (Smi::IsValid(constant)) { Condition are_greater_equal = CheckSmiGreaterEqualsConstant(src, constant); j(are_greater_equal, on_greater_equals); - } else if (constant < Smi::kMinValue){ + } else if (constant < Smi::kMinValue) { jmp(on_greater_equals); } } --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
