VAX: Correct a typo in PIC symbolic addition operand checks

Fix a typo and check both SImode addition operands for being incorrectly
symbolic in PIC mode before issuing a diagnostic dump of the offending
RTL expression.

	gcc/
	* config/vax/vax.c (vax_output_int_add) <E_SImode>: Also check
	`operands[2]' for being symbolic with PIC rather than checking
	`operands[1]' twice.
This commit is contained in:
Maciej W. Rozycki 2020-11-15 17:41:52 +00:00
parent baf38d2e36
commit c454324bff

View File

@ -1511,7 +1511,7 @@ vax_output_int_add (rtx_insn *insn, rtx *operands, machine_mode mode)
if (flag_pic
&& (symbolic_operand (operands[1], SImode)
|| symbolic_operand (operands[1], SImode)))
|| symbolic_operand (operands[2], SImode)))
debug_rtx (insn);
return "addl3 %1,%2,%0";