Skip to content

Commit 6682305

Browse files
author
Vladimir Kozlov
committed
8334779: Test compiler/c1/CanonicalizeArrayLength.java is timing out
Reviewed-by: thartmann, dlong
1 parent 3796fdf commit 6682305

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hotspot/cpu/x86/macroAssembler_x86.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -5142,7 +5142,7 @@ void MacroAssembler::_verify_oop(Register reg, const char* s, const char* file,
51425142
ss.print("verify_oop: %s: %s (%s:%d)", reg->name(), s, file, line);
51435143
b = code_string(ss.as_string());
51445144
}
5145-
ExternalAddress buffer((address) b);
5145+
AddressLiteral buffer((address) b, external_word_Relocation::spec_for_immediate());
51465146
pushptr(buffer.addr(), rscratch1);
51475147

51485148
// call indirectly to solve generation ordering problem
@@ -5212,7 +5212,7 @@ void MacroAssembler::_verify_oop_addr(Address addr, const char* s, const char* f
52125212
ss.print("verify_oop_addr: %s (%s:%d)", s, file, line);
52135213
b = code_string(ss.as_string());
52145214
}
5215-
ExternalAddress buffer((address) b);
5215+
AddressLiteral buffer((address) b, external_word_Relocation::spec_for_immediate());
52165216
pushptr(buffer.addr(), rscratch1);
52175217

52185218
// call indirectly to solve generation ordering problem

0 commit comments

Comments
 (0)