Index: src/hydrogen.cc |
=================================================================== |
--- src/hydrogen.cc (revision 9609) |
+++ src/hydrogen.cc (working copy) |
@@ -4555,9 +4555,7 @@ |
HEnvironment* env = environment(); |
int current_level = 1; |
while (env->outer() != NULL) { |
- if (current_level == (FLAG_limit_inlining |
- ? Compiler::kMaxInliningLevels |
- : 2 * Compiler::kMaxInliningLevels)) { |
+ if (current_level == Compiler::kMaxInliningLevels) { |
TraceInline(target, caller, "inline depth limit reached"); |
return false; |
} |