Skip to content

Commit 563b268

Browse files
Sergey Platonovshipilev
Sergey Platonov
authored andcommittedJan 12, 2021
8257709: C1: Double assignment in InstructionPrinter::print_stack
Reviewed-by: shade, chagedorn
1 parent 400dc76 commit 563b268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/c1/c1_InstructionPrinter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ void InstructionPrinter::print_stack(ValueStack* stack) {
240240
output()->cr();
241241
fill_to(start_position, ' ');
242242
output()->print("locks [");
243-
for (int i = i = 0; i < stack->locks_size(); i++) {
243+
for (int i = 0; i < stack->locks_size(); i++) {
244244
Value t = stack->lock_at(i);
245245
if (i > 0) output()->print(", ");
246246
output()->print("%d:", i);

0 commit comments

Comments
 (0)
Please sign in to comment.