Skip to content

Commit 886d96e

Browse files
cost0muchshipilev
authored andcommitted
8323803: ConstantOopReadValue::print_on should print 'null' instead of 'nullptr'
Backport-of: 7620b129888d57514d9ef588e0681f1d43377236
1 parent 2f321a5 commit 886d96e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/share/code/debugInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ void ConstantOopReadValue::print_on(outputStream* st) const {
277277
if (value()() != nullptr) {
278278
value()()->print_value_on(st);
279279
} else {
280-
st->print("nullptr");
280+
st->print("null");
281281
}
282282
}
283283

0 commit comments

Comments
 (0)