[PATCH] Fix minor fallout from operand_address changes
authorJeff Law <law@redhat.com>
Tue, 10 Nov 2015 21:11:07 +0000 (14:11 -0700)
committerJeff Law <law@gcc.gnu.org>
Tue, 10 Nov 2015 21:11:07 +0000 (14:11 -0700)
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

gcc/ChangeLog
gcc/config/ft32/ft32.c
gcc/config/moxie/moxie.c

index 2c966e7d86cc251af8b0fa70026dca73287cddc4..84481efb5ae0a4e01e542900775ac83bffa33cb1 100644 (file)
@@ -1,3 +1,10 @@
+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
index 85e5ba3bbe5bece9dd8ea243f02aee05160586e2..ab620617bf74a59d781ee32ad7d9f5b4cdb73343 100644 (file)
@@ -238,7 +238,7 @@ ft32_print_operand (FILE * file, rtx x, int code)
       return;
 
     case MEM:
-      output_address (XEXP (operand, 0));
+      output_address (GET_MODE (XEXP (operand, 0)), XEXP (operand, 0));
       return;
 
     default:
index a45b825ced034a50155069c80ca4c2589f4a1296..756e2f74e2d32c13db899dbb148c0da789e141f4 100644 (file)
@@ -106,7 +106,7 @@ moxie_operand_lossage (const char *msgid, rtx op)
 /* 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))
     {
@@ -183,7 +183,7 @@ moxie_print_operand (FILE *file, rtx x, int code)
       return;
 
     case MEM:
-      output_address (XEXP (operand, 0));
+      output_address (GET_MODE (XEXP (operand, 0)), XEXP (operand, 0));
       return;
 
     default: