Reviewers: danno, Message: Hi Danno, I would appreciate it if you could review my change. Thanks!
Description: Fix tick processor to correctly handle the 'parallel-compiler' tick. BUG=none TEST=none Please review this at https://codereview.chromium.org/11347043/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M tools/tickprocessor.js Index: tools/tickprocessor.js =================================================================== --- tools/tickprocessor.js (revision 12764) +++ tools/tickprocessor.js (working copy) @@ -231,8 +231,9 @@ JS: 0, GC: 1, COMPILER: 2, - OTHER: 3, - EXTERNAL: 4 + PARALLEL_COMPILER_PROLOGUE: 3, + OTHER: 4, + EXTERNAL: 5 }; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
