Index: src/compiler/instruction.h |
diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h |
index b5c591416618eb65f99b920511d0a934a3e8023a..c6a3d6df0c6bae04f664d43fe5df9704fe4b8410 100644 |
--- a/src/compiler/instruction.h |
+++ b/src/compiler/instruction.h |
@@ -1300,9 +1300,6 @@ class InstructionBlock final : public ZoneObject { |
bool must_deconstruct_frame() const { return must_deconstruct_frame_; } |
void mark_must_deconstruct_frame() { must_deconstruct_frame_ = true; } |
- void set_last_deferred(RpoNumber last) { last_deferred_ = last; } |
- RpoNumber last_deferred() const { return last_deferred_; } |
- |
private: |
Successors successors_; |
Predecessors predecessors_; |
@@ -1318,7 +1315,6 @@ class InstructionBlock final : public ZoneObject { |
bool needs_frame_; |
bool must_construct_frame_; |
bool must_deconstruct_frame_; |
- RpoNumber last_deferred_; |
}; |
class InstructionSequence; |