mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
7192167: JSR 292: C1 has old broken code which needs to be removed
Reviewed-by: kvn, roland, jrose
This commit is contained in:
parent
04c6a7ce10
commit
a14e902e92
5 changed files with 23 additions and 136 deletions
|
@ -448,10 +448,10 @@ void LIR_Assembler::emit_call(LIR_OpJavaCall* op) {
|
|||
|
||||
switch (op->code()) {
|
||||
case lir_static_call:
|
||||
case lir_dynamic_call:
|
||||
call(op, relocInfo::static_call_type);
|
||||
break;
|
||||
case lir_optvirtual_call:
|
||||
case lir_dynamic_call:
|
||||
call(op, relocInfo::opt_virtual_call_type);
|
||||
break;
|
||||
case lir_icvirtual_call:
|
||||
|
@ -460,7 +460,9 @@ void LIR_Assembler::emit_call(LIR_OpJavaCall* op) {
|
|||
case lir_virtual_call:
|
||||
vtable_call(op);
|
||||
break;
|
||||
default: ShouldNotReachHere();
|
||||
default:
|
||||
fatal(err_msg_res("unexpected op code: %s", op->name()));
|
||||
break;
|
||||
}
|
||||
|
||||
// JSR 292
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue