Reviewers: Mads Ager, Description: Fix compilation error in r3350
[email protected] Please review this at http://codereview.chromium.org/435021 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/runtime.cc Index: src/runtime.cc =================================================================== --- src/runtime.cc (revision 3350) +++ src/runtime.cc (working copy) @@ -3762,7 +3762,6 @@ ASSERT(args.length() == 2); CONVERT_CHECKED(String, str1, args[0]); CONVERT_CHECKED(String, str2, args[1]); - Counters::cons_strings_runtime.Increment(); return Heap::AllocateConsString(str1, str2); } --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
