src/hotspot/cpu/x86/assembler_x86.cpp
changeset 48807 fd8ccb37fce9
parent 48489 a5548cf24286
child 49347 edb65305d3ac
--- a/src/hotspot/cpu/x86/assembler_x86.cpp	Mon Jan 22 12:04:12 2018 +0100
+++ b/src/hotspot/cpu/x86/assembler_x86.cpp	Fri Jan 19 17:01:34 2018 +0100
@@ -1510,11 +1510,11 @@
 }
 
 void Assembler::call_literal(address entry, RelocationHolder const& rspec) {
-  assert(entry != NULL, "call most probably wrong");
   InstructionMark im(this);
   emit_int8((unsigned char)0xE8);
   intptr_t disp = entry - (pc() + sizeof(int32_t));
-  assert(is_simm32(disp), "must be 32bit offset (call2)");
+  // Entry is NULL in case of a scratch emit.
+  assert(entry == NULL || is_simm32(disp), "disp=" INTPTR_FORMAT " must be 32bit offset (call2)", disp);
   // Technically, should use call32_operand, but this format is
   // implied by the fact that we're emitting a call instruction.