Index: src/hydrogen.h |
diff --git a/src/hydrogen.h b/src/hydrogen.h |
index ae16e5a34277050ba2a80bed2741783c9a098f1d..431dc516e3b1a592e10ab4ecb9af3e730e586066 100644 |
--- a/src/hydrogen.h |
+++ b/src/hydrogen.h |
@@ -510,23 +510,6 @@ class HGraph FINAL : public ZoneObject { |
int no_side_effects_scope_count_; |
bool disallow_adding_new_values_; |
- class InlinedFunctionInfo { |
- public: |
- explicit InlinedFunctionInfo(Handle<SharedFunctionInfo> shared) |
- : shared_(shared), start_position_(shared->start_position()) { |
- } |
- |
- Handle<SharedFunctionInfo> shared() const { return shared_; } |
- int start_position() const { return start_position_; } |
- |
- private: |
- Handle<SharedFunctionInfo> shared_; |
- int start_position_; |
- }; |
- |
- ZoneList<InlinedFunctionInfo> inlined_functions_; |
- ZoneList<int> inlining_id_to_function_id_; |
- |
DISALLOW_COPY_AND_ASSIGN(HGraph); |
}; |