2015-11-10 Jeff Law <law@redhat.com>
* config/ft32/ft32.c (ft32_print_operand): Supply mode to
call to output_address.
* config/moxie/moxie.c (moxie_print_operand_address): Similarly.
Add unnamed machine_mode argument.
From-SVN: r230130
+2015-11-10 Jeff Law <law@redhat.com>
+
+ * config/ft32/ft32.c (ft32_print_operand): Supply mode to
+ call to output_address.
+ * config/moxie/moxie.c (moxie_print_operand_address): Similarly.
+ Add unnamed machine_mode argument.
+
2015-11-10 Michael Meissner <meissner@linux.vnet.ibm.com>
* config.gcc (powerpc*-*-*, rs6000*-*-*): Add power9 to hosts that
return;
case MEM:
- output_address (XEXP (operand, 0));
+ output_address (GET_MODE (XEXP (operand, 0)), XEXP (operand, 0));
return;
default:
/* The PRINT_OPERAND_ADDRESS worker. */
static void
-moxie_print_operand_address (FILE *file, rtx x)
+moxie_print_operand_address (FILE *file, machine_mode, rtx x)
{
switch (GET_CODE (x))
{
return;
case MEM:
- output_address (XEXP (operand, 0));
+ output_address (GET_MODE (XEXP (operand, 0)), XEXP (operand, 0));
return;
default: