mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8211279: Verify missing object equals barriers
Reviewed-by: pliden, shade, zgu
This commit is contained in:
parent
a9f9385ced
commit
3085a89f13
12 changed files with 33 additions and 15 deletions
|
@ -2340,7 +2340,7 @@ void nmethod::print_recorded_oops() {
|
|||
for (int i = 0; i < oops_count(); i++) {
|
||||
oop o = oop_at(i);
|
||||
tty->print("#%3d: " INTPTR_FORMAT " ", i, p2i(o));
|
||||
if (o == (oop)Universe::non_oop_word()) {
|
||||
if (o == Universe::non_oop_word()) {
|
||||
tty->print("non-oop word");
|
||||
} else {
|
||||
if (o != NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue