Index: src/runtime-profiler.cc |
diff --git a/src/runtime-profiler.cc b/src/runtime-profiler.cc |
index 97f034169e5677a1b38751a78328760714b4ecdd..8d258acef04d7f63eb84258ca3cbb1bf23a73848 100644 |
--- a/src/runtime-profiler.cc |
+++ b/src/runtime-profiler.cc |
@@ -1,4 +1,4 @@ |
-// Copyright 2010 the V8 project authors. All rights reserved. |
+// Copyright 2011 the V8 project authors. All rights reserved. |
// Redistribution and use in source and binary forms, with or without |
// modification, are permitted provided that the following conditions are |
// met: |
@@ -153,6 +153,7 @@ void RuntimeProfiler::Optimize(JSFunction* function, bool eager, int delay) { |
if (FLAG_trace_opt) { |
PrintF("[marking (%s) ", eager ? "eagerly" : "lazily"); |
function->PrintName(); |
+ PrintF(" 0x%" V8PRIxPTR, reinterpret_cast<intptr_t>(function->address())); |
PrintF(" for recompilation"); |
if (delay > 0) { |
PrintF(" (delayed %0.3f ms)", static_cast<double>(delay) / 1000); |