Index: src/mips/assembler-mips.cc |
diff --git a/src/mips/assembler-mips.cc b/src/mips/assembler-mips.cc |
index 696acd89d2c58ecf945db8c8788ccd85fff92494..b659559fee09126803fe17512ff77845eb74b3f9 100644 |
--- a/src/mips/assembler-mips.cc |
+++ b/src/mips/assembler-mips.cc |
@@ -2327,6 +2327,20 @@ void Assembler::JumpLabelToJumpRegister(Address pc) { |
} |
} |
+ |
+MaybeObject* Assembler::AllocateConstantPool(Heap* heap) { |
+ // No out-of-line constant pool support. |
+ UNREACHABLE(); |
+ return NULL; |
+} |
+ |
+ |
+void Assembler::PopulateConstantPool(ConstantPoolArray* constant_pool) { |
+ // No out-of-line constant pool support. |
+ UNREACHABLE(); |
+} |
+ |
+ |
} } // namespace v8::internal |
#endif // V8_TARGET_ARCH_MIPS |