Skip to content

Commit 7620b12

Browse files
theoweidmannoracleTobiHartmann
authored andcommittedNov 7, 2024
8323803: ConstantOopReadValue::print_on should print 'null' instead of 'nullptr'
Reviewed-by: chagedorn, kvn
1 parent 592a48b commit 7620b12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/code/debugInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ void ConstantOopReadValue::print_on(outputStream* st) const {
382382
if (value()() != nullptr) {
383383
value()()->print_value_on(st);
384384
} else {
385-
st->print("nullptr");
385+
st->print("null");
386386
}
387387
}
388388

0 commit comments

Comments
 (0)
Please sign in to comment.