Index: src/ia32/lithium-ia32.h |
diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h |
index e43672cdd9cce5db4e0b7eb2de89547de4d7dee7..a90e3913b8bd50561b1c2dd731d71a49bf687693 100644 |
--- a/src/ia32/lithium-ia32.h |
+++ b/src/ia32/lithium-ia32.h |
@@ -2656,26 +2656,10 @@ class LDeleteProperty: public LTemplateInstruction<1, 3, 0> { |
class LOsrEntry: public LTemplateInstruction<0, 0, 0> { |
public: |
- LOsrEntry(); |
+ LOsrEntry() {} |
virtual bool HasInterestingComment(LCodeGen* gen) const { return false; } |
DECLARE_CONCRETE_INSTRUCTION(OsrEntry, "osr-entry") |
- |
- LOperand** SpilledRegisterArray() { return register_spills_; } |
- LOperand** SpilledDoubleRegisterArray() { return double_register_spills_; } |
- |
- void MarkSpilledRegister(int allocation_index, LOperand* spill_operand); |
- void MarkSpilledDoubleRegister(int allocation_index, |
- LOperand* spill_operand); |
- |
- private: |
- // Arrays of spill slot operands for registers with an assigned spill |
- // slot, i.e., that must also be restored to the spill slot on OSR entry. |
- // NULL if the register has no assigned spill slot. Indexed by allocation |
- // index. |
- LOperand* register_spills_[Register::kMaxNumAllocatableRegisters]; |
- LOperand* double_register_spills_[ |
- DoubleRegister::kMaxNumAllocatableRegisters]; |
}; |