Index: src/mips/assembler-mips.cc |
diff --git a/src/mips/assembler-mips.cc b/src/mips/assembler-mips.cc |
index fc664aafa524df3888f25ee752a00837515753d3..c1f72d1527c2f389fb86e23f53a16d4f30f36e3d 100644 |
--- a/src/mips/assembler-mips.cc |
+++ b/src/mips/assembler-mips.cc |
@@ -2726,13 +2726,6 @@ |
CheckBuffer(); |
*reinterpret_cast<uint32_t*>(pc_) = data; |
pc_ += sizeof(uint32_t); |
-} |
- |
- |
-void Assembler::dq(uint64_t data) { |
- CheckBuffer(); |
- *reinterpret_cast<uint64_t*>(pc_) = data; |
- pc_ += sizeof(uint64_t); |
} |
@@ -3032,6 +3025,20 @@ |
} |
+Handle<ConstantPoolArray> Assembler::NewConstantPool(Isolate* isolate) { |
+ // No out-of-line constant pool support. |
+ DCHECK(!FLAG_enable_ool_constant_pool); |
+ return isolate->factory()->empty_constant_pool_array(); |
+} |
+ |
+ |
+void Assembler::PopulateConstantPool(ConstantPoolArray* constant_pool) { |
+ // No out-of-line constant pool support. |
+ DCHECK(!FLAG_enable_ool_constant_pool); |
+ return; |
+} |
+ |
+ |
} // namespace internal |
} // namespace v8 |