From: Maciej W. Rozycki Date: Sun, 15 Nov 2020 17:41:52 +0000 (+0000) Subject: VAX: Fix a typo in NO_EXTERNAL_INDIRECT_ADDRESS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=075fdf85245a4d610479598bff9dadd304c3c1a0;p=gcc.git VAX: Fix a typo in NO_EXTERNAL_INDIRECT_ADDRESS Fix a typo in a NO_EXTERNAL_INDIRECT_ADDRESS macro check around an assertion verifying DImode addition operands to be valid for PIC. gcc/ * config/vax/vax.c (vax_output_int_add) : Fix a typo in NO_EXTERNAL_INDIRECT_ADDRESS. --- diff --git a/gcc/config/vax/vax.c b/gcc/config/vax/vax.c index ffb7475ac74..d372c4ace9d 100644 --- a/gcc/config/vax/vax.c +++ b/gcc/config/vax/vax.c @@ -1369,7 +1369,7 @@ vax_output_int_add (rtx_insn *insn, rtx *operands, machine_mode mode) if (TARGET_QMATH) { gcc_assert (rtx_equal_p (operands[0], operands[1])); -#ifdef NO_EXTERNAL_INDIRECT_ADDRESSS +#ifdef NO_EXTERNAL_INDIRECT_ADDRESS gcc_assert (!flag_pic || !external_memory_operand (low[2], SImode)); gcc_assert (!flag_pic || !external_memory_operand (low[0], SImode)); #endif