8140238: Zero fails to build from source

Zero fails to build after 8136421 and 8078554

Reviewed-by: kvn
This commit is contained in:
Ed Nevill 2015-10-21 12:15:37 +00:00
parent 374baee57f
commit 724a1054af
3 changed files with 2 additions and 6 deletions

View file

@ -60,7 +60,7 @@ bool CompiledIC::is_icholder_call_site(virtual_call_Relocation* call_site) {
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf) { address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark) {
ShouldNotReachHere(); // Only needed for COMPILER2. ShouldNotReachHere(); // Only needed for COMPILER2.
return NULL; return NULL;
} }

View file

@ -59,11 +59,6 @@ void poll_Relocation::fix_relocation_after_move(const CodeBuffer* src,
ShouldNotCallThis(); ShouldNotCallThis();
} }
void poll_return_Relocation::fix_relocation_after_move(const CodeBuffer* src,
CodeBuffer* dst) {
ShouldNotCallThis();
}
void metadata_Relocation::pd_fix_value(address x) { void metadata_Relocation::pd_fix_value(address x) {
ShouldNotCallThis(); ShouldNotCallThis();
} }

View file

@ -37,4 +37,5 @@ void VM_Version::initialize() {
warning("Unaligned memory access is not available on this CPU"); warning("Unaligned memory access is not available on this CPU");
FLAG_SET_DEFAULT(UseUnalignedAccesses, false); FLAG_SET_DEFAULT(UseUnalignedAccesses, false);
} }
FLAG_SET_DEFAULT(AllocatePrefetchDistance, 0);
} }