Reviewers: Jakob,
Description:
Remove bogus filter from runtime-profiler tracing.
[email protected]
Please review this at https://codereview.chromium.org/864453002/
Base URL: https://chromium.googlesource.com/v8/v8.git@master
Affected files (+1, -1 lines):
M src/runtime-profiler.cc
Index: src/runtime-profiler.cc
diff --git a/src/runtime-profiler.cc b/src/runtime-profiler.cc
index
109c1a52a98cc805705ecfaeefe50aa83460c7d3..66727cbf13693ee932d9817856f9ee298395345d
100644
--- a/src/runtime-profiler.cc
+++ b/src/runtime-profiler.cc
@@ -91,7 +91,7 @@ static void GetICCounts(SharedFunctionInfo* shared,
void RuntimeProfiler::Optimize(JSFunction* function, const char* reason) {
DCHECK(function->IsOptimizable());
- if (FLAG_trace_opt && function->PassesFilter(FLAG_hydrogen_filter)) {
+ if (FLAG_trace_opt) {
PrintF("[marking ");
function->ShortPrint();
PrintF(" for recompilation, reason: %s", reason);
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.