Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index eb85f10ed5bb77815be979a5a924aaa60d084782..6c8a7259dc62e85196c102897eaa8db7000716bd 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -1274,6 +1274,7 @@ class LLoadContextSlot: public LTemplateInstruction<1, 1, 0> { |
LOperand* context() { return InputAt(0); } |
int slot_index() { return hydrogen()->slot_index(); } |
+ bool RequiresHoleCheck() { return hydrogen()->RequiresHoleCheck(); } |
virtual void PrintDataTo(StringStream* stream); |
}; |
@@ -1292,6 +1293,7 @@ class LStoreContextSlot: public LTemplateInstruction<0, 2, 0> { |
LOperand* context() { return InputAt(0); } |
LOperand* value() { return InputAt(1); } |
int slot_index() { return hydrogen()->slot_index(); } |
+ bool RequiresHoleCheck() { return hydrogen()->RequiresHoleCheck(); } |
virtual void PrintDataTo(StringStream* stream); |
}; |