Reviewers: Lasse Reichstein, Description: Fix lint
Please review this at http://codereview.chromium.org/115076 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/globals.h M src/log.cc Index: src/log.cc =================================================================== --- src/log.cc (revision 1895) +++ src/log.cc (working copy) @@ -907,7 +907,8 @@ name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL); SmartPointer<char> sourcestr = source->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL); - msg.Append("code-creation,%s,0x%"V8PRIp",%d,\"%s %s:%d\"\n", tag, code->address(), + msg.Append("code-creation,%s,0x%"V8PRIp",%d,\"%s %s:%d\"\n", + tag, code->address(), code->ExecutableSize(), *str, *sourcestr, line); msg.WriteToLogFile(); Index: src/globals.h =================================================================== --- src/globals.h (revision 1895) +++ src/globals.h (working copy) @@ -82,7 +82,7 @@ #define V8_INT64_C(x) (x ## L) #define V8_PTR_PREFIX "l" #endif -#else // V8_HOST_ARCH_64_BIT +#else // V8_HOST_ARCH_64_BIT #define V8_PTR_PREFIX "" #endif --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
