mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-15 21:05:11 +00:00
6939804: ciConstant::print() prints incorrect bool value
Fix typo. Reviewed-by: never
This commit is contained in:
parent
7a9a877131
commit
8e1f408216
@ -36,7 +36,7 @@ void ciConstant::print() {
|
||||
basictype_to_str(basic_type()));
|
||||
switch (basic_type()) {
|
||||
case T_BOOLEAN:
|
||||
tty->print("%s", bool_to_str(_value._int == 0));
|
||||
tty->print("%s", bool_to_str(_value._int != 0));
|
||||
break;
|
||||
case T_CHAR:
|
||||
case T_BYTE:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user