Commit 732ea6d1 by Jeff Law Committed by Jeff Law

[PATCH] Fix minor fallout from operand_address changes

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
parent 1840c953
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> 2015-11-10 Michael Meissner <meissner@linux.vnet.ibm.com>
* config.gcc (powerpc*-*-*, rs6000*-*-*): Add power9 to hosts that * config.gcc (powerpc*-*-*, rs6000*-*-*): Add power9 to hosts that
...@@ -238,7 +238,7 @@ ft32_print_operand (FILE * file, rtx x, int code) ...@@ -238,7 +238,7 @@ ft32_print_operand (FILE * file, rtx x, int code)
return; return;
case MEM: case MEM:
output_address (XEXP (operand, 0)); output_address (GET_MODE (XEXP (operand, 0)), XEXP (operand, 0));
return; return;
default: default:
......
...@@ -106,7 +106,7 @@ moxie_operand_lossage (const char *msgid, rtx op) ...@@ -106,7 +106,7 @@ moxie_operand_lossage (const char *msgid, rtx op)
/* The PRINT_OPERAND_ADDRESS worker. */ /* The PRINT_OPERAND_ADDRESS worker. */
static void static void
moxie_print_operand_address (FILE *file, rtx x) moxie_print_operand_address (FILE *file, machine_mode, rtx x)
{ {
switch (GET_CODE (x)) switch (GET_CODE (x))
{ {
...@@ -183,7 +183,7 @@ moxie_print_operand (FILE *file, rtx x, int code) ...@@ -183,7 +183,7 @@ moxie_print_operand (FILE *file, rtx x, int code)
return; return;
case MEM: case MEM:
output_address (XEXP (operand, 0)); output_address (GET_MODE (XEXP (operand, 0)), XEXP (operand, 0));
return; return;
default: default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment