Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 96f6885f3a0d477a62a9e40c106cc84104153ce7..3b612c1323dbf5874fb56cbe6959e699cb9112f0 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -568,12 +568,10 @@ void SetExpectedNofPropertiesFromEstimate(Handle<SharedFunctionInfo> shared, |
// the estimate conservatively. |
if (shared->GetIsolate()->serializer_enabled()) { |
estimate += 2; |
- } else if (FLAG_clever_optimizations) { |
+ } else { |
// Inobject slack tracking will reclaim redundant inobject space later, |
// so we can afford to adjust the estimate generously. |
estimate += 8; |
- } else { |
- estimate += 3; |
} |
shared->set_expected_nof_properties(estimate); |