mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 19:11:19 +08:00
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:
parent
baf38d2e36
commit
c454324bff
@ -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";
|
||||
|
Loading…
x
Reference in New Issue
Block a user