Skip to content

Commit d1cc3ac

Browse files
committed
fix warning
1 parent b915fd4 commit d1cc3ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gcc/dwarf2out.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2074,9 +2074,9 @@ output_loc_operands (dw_loc_descr_ref loc, int for_eh_or_skip)
20742074
/* Make sure the offset has been computed and that we can encode it as
20752075
an operand. */
20762076
gcc_assert (die_offset > 0
2077-
&& die_offset <= (loc->dw_loc_opc == DW_OP_call2)
2077+
&& die_offset <= ((loc->dw_loc_opc == DW_OP_call2)
20782078
? 0xffff
2079-
: 0xffffffff);
2079+
: 0xffffffff));
20802080
dw2_asm_output_data ((loc->dw_loc_opc == DW_OP_call2) ? 2 : 4,
20812081
die_offset, NULL);
20822082
}

0 commit comments

Comments
 (0)