Reviewers: Mads Ager, Description: Fix lint error.
[email protected] Please review this at http://codereview.chromium.org/230002 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/x64/macro-assembler-x64.cc Index: src/x64/macro-assembler-x64.cc =================================================================== --- src/x64/macro-assembler-x64.cc (revision 2960) +++ src/x64/macro-assembler-x64.cc (working copy) @@ -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 -~----------~----~----~----~------~----~------~--~---
