mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-26 21:38:10 +00:00
8257709: C1: Double assignment in InstructionPrinter::print_stack
Reviewed-by: shade, chagedorn
This commit is contained in:
parent
400dc76f68
commit
563b268c8f
@ -240,7 +240,7 @@ void InstructionPrinter::print_stack(ValueStack* stack) {
|
||||
output()->cr();
|
||||
fill_to(start_position, ' ');
|
||||
output()->print("locks [");
|
||||
for (int i = i = 0; i < stack->locks_size(); i++) {
|
||||
for (int i = 0; i < stack->locks_size(); i++) {
|
||||
Value t = stack->lock_at(i);
|
||||
if (i > 0) output()->print(", ");
|
||||
output()->print("%d:", i);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user