Rename function.
authorMichael Meissner <meissner@linux.ibm.com>
Thu, 18 Jul 2019 19:07:13 +0000 (19:07 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Thu, 18 Jul 2019 19:07:13 +0000 (19:07 +0000)
2019-07-18  Michael Meissner  <meissner@linux.ibm.com>

* config/rs6000/predicates.md (prefixed_mem_operand): Call
rs6000_prefixed_address_mode_p instead of rs6000_prefixed_address.
* config/rs6000/rs6000-protos.h (rs6000_prefixed_address_mode_p):
Rename function from rs6000_prefixed_address.
* config/rs6000/rs6000.c (rs6000_prefixed_address_mode_p): Rename
function from rs6000_prefixed_address.

From-SVN: r273580

gcc/ChangeLog
gcc/config/rs6000/predicates.md
gcc/config/rs6000/rs6000-protos.h
gcc/config/rs6000/rs6000.c

index 151297aab74c63fd7181a0f11be07ce1fc82df7b..55680d13c2953c5d64ce7bfafbe4d2eaec55d9cd 100644 (file)
@@ -1,5 +1,9 @@
 2019-07-18  Michael Meissner  <meissner@linux.ibm.com>
 
+       * config/rs6000/predicates.md (prefixed_mem_operand): Call
+       rs6000_prefixed_address_mode_p instead of rs6000_prefixed_address.
+       * config/rs6000/rs6000-protos.h (rs6000_prefixed_address_mode_p):
+       Rename function from rs6000_prefixed_address.
        * config/rs6000/aix.h (TARGET_HAS_TOC): Rename TARGET_TOC to
        TARGET_HAS_TOC.
        (TARGET_TOC): Likewise.
@@ -25,6 +29,8 @@
        (output_toc): Use TARGET_NO_TOC_OR_PCREL instead of
        TARGET_NO_TOC.
        (rs6000_can_eliminate): Likewise.
+       (rs6000_prefixed_address_mode_p): Rename function from
+       rs6000_prefixed_address.
        * config/rs6000/rs6000.h (TARGET_TOC): Define in terms of
        TARGET_HAS_TOC and not pc-relative.
        (TARGET_NO_TOC_OR_PCREL): New macro to replace TARGET_NO_TOC.
index e64f772de02fc1cab8694c5bc305b9f4fd6ec720..5f687ead16d1777e17b65f91599dc4c1673c0b01 100644 (file)
 (define_predicate "prefixed_mem_operand"
   (match_code "mem")
 {
-  return rs6000_prefixed_address (XEXP (op, 0), GET_MODE (op));
+  return rs6000_prefixed_address_mode_p (XEXP (op, 0), GET_MODE (op));
 })
 
 ;; Return 1 if op is a memory operand to an external variable when we
index feb1250fb8b222878739bba1085da263ab0e2af4..06e40d94b17733ece6621ee6e3144cf05f80d785 100644 (file)
@@ -154,7 +154,7 @@ extern align_flags rs6000_loop_align (rtx);
 extern void rs6000_split_logical (rtx [], enum rtx_code, bool, bool, bool);
 extern bool rs6000_pcrel_p (struct function *);
 extern bool rs6000_fndecl_pcrel_p (const_tree);
-extern bool rs6000_prefixed_address (rtx, machine_mode);
+extern bool rs6000_prefixed_address_mode_p (rtx, machine_mode);
 #endif /* RTX_CODE */
 
 #ifdef TREE_CODE
index 3f641042c52a28a3f2c791347225d7fada27e2d6..0013b39d0a801cd2a3e0770a0f43547e49d35157 100644 (file)
@@ -21504,7 +21504,7 @@ mode_supports_prefixed_address_p (machine_mode mode)
    mode MODE.  */
 
 bool
-rs6000_prefixed_address (rtx addr, machine_mode mode)
+rs6000_prefixed_address_mode_p (rtx addr, machine_mode mode)
 {
   if (!TARGET_PREFIXED_ADDR || !mode_supports_prefixed_address_p (mode))
     return false;