Reviewers: Mads Ager, Description: Fix compile error.
Why even compile simple changes? [email protected] Please review this at http://codereview.chromium.org/209011 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/ia32/builtins-ia32.cc Index: src/ia32/builtins-ia32.cc =================================================================== --- src/ia32/builtins-ia32.cc (revision 2908) +++ src/ia32/builtins-ia32.cc (working copy) @@ -741,7 +741,7 @@ // Fill the FixedArray with the hole value. Inline the code if short. // Reconsider loop unfolding if kPreallocatedArrayElements gets changed. - static const int kLoopUnfoldLimit = 4 + static const int kLoopUnfoldLimit = 4; ASSERT(kPreallocatedArrayElements <= kLoopUnfoldLimit); if (holes <= kLoopUnfoldLimit) { // Use a scratch register here to have only one reloc info when unfolding --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
