Index: src/x64/assembler-x64.cc |
diff --git a/src/x64/assembler-x64.cc b/src/x64/assembler-x64.cc |
index 53d45bb2156635647a35224d57069886cc80372f..eeedecfb7b07df82b6701426ba4ff9035024bc37 100644 |
--- a/src/x64/assembler-x64.cc |
+++ b/src/x64/assembler-x64.cc |
@@ -3199,6 +3199,19 @@ void Assembler::RecordComment(const char* msg, bool force) { |
} |
+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(); |
+} |
+ |
+ |
const int RelocInfo::kApplyMask = RelocInfo::kCodeTargetMask | |
1 << RelocInfo::RUNTIME_ENTRY | |
1 << RelocInfo::INTERNAL_REFERENCE | |