8277860: PPC: Remove duplicate info != NULL check
Reviewed-by: chagedorn, mdoerr
This commit is contained in:
parent
040b2c52d3
commit
ce0234b47d
@ -2733,12 +2733,10 @@ void LIR_Assembler::emit_load_klass(LIR_OpLoadKlass* op) {
|
||||
|
||||
CodeEmitInfo* info = op->info();
|
||||
if (info != NULL) {
|
||||
if (info != NULL) {
|
||||
if (!os::zero_page_read_protected() || !ImplicitNullChecks) {
|
||||
explicit_null_check(obj, info);
|
||||
} else {
|
||||
add_debug_info_for_null_check_here(info);
|
||||
}
|
||||
if (!os::zero_page_read_protected() || !ImplicitNullChecks) {
|
||||
explicit_null_check(obj, info);
|
||||
} else {
|
||||
add_debug_info_for_null_check_here(info);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user