Update documentation for address space hooks
authorRichard Henderson <rth@redhat.com>
Wed, 21 Oct 2015 20:48:46 +0000 (13:48 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Wed, 21 Oct 2015 20:48:46 +0000 (13:48 -0700)
        * target.def (addr_space.pointer_mode): Update documentation
        of default behavior.
        (addr_space.address_mode): Likewise.
        * tm.texi: Update.

From-SVN: r229144

gcc/ChangeLog
gcc/doc/tm.texi
gcc/target.def

index d5d304dcbf99a37955c3265f1a055dd4338e2971..20f72c51b96c8141ee0bb76e791d912b9d8db2af 100644 (file)
@@ -6,6 +6,10 @@
        (default_addr_space_valid_pointer_mode): Likewise.
        (default_addr_space_legitimate_address_p): Likewise.
        (default_addr_space_legitimize_address): Likewise.
+       * target.def (addr_space.pointer_mode): Update documentation
+       of default behavior.
+       (addr_space.address_mode): Likewise.
+       * tm.texi: Update.
 
        * expr.c (expand_expr_real_2): Use convert_modes on disjoint
        address spaces.
index 4a12ad6f42928f629500a5ed3418108a8b4ebf2f..e6f712a4046d7ec7274ec9b8e2c03f80b03af7ca 100644 (file)
@@ -10276,15 +10276,13 @@ c_register_addr_space ("__ea", ADDR_SPACE_EA);
 @deftypefn {Target Hook} machine_mode TARGET_ADDR_SPACE_POINTER_MODE (addr_space_t @var{address_space})
 Define this to return the machine mode to use for pointers to
 @var{address_space} if the target supports named address spaces.
-The default version of this hook returns @code{ptr_mode} for the
-generic address space only.
+The default version of this hook returns @code{ptr_mode}.
 @end deftypefn
 
 @deftypefn {Target Hook} machine_mode TARGET_ADDR_SPACE_ADDRESS_MODE (addr_space_t @var{address_space})
 Define this to return the machine mode to use for addresses in
 @var{address_space} if the target supports named address spaces.
-The default version of this hook returns @code{Pmode} for the
-generic address space only.
+The default version of this hook returns @code{Pmode}.
 @end deftypefn
 
 @deftypefn {Target Hook} bool TARGET_ADDR_SPACE_VALID_POINTER_MODE (machine_mode @var{mode}, addr_space_t @var{as})
index 93478e8aeeaf71ded57875751409519e4ee58bdf..e4bc249939a53f6d1814d4c0b83b0d49c07f3468 100644 (file)
@@ -3129,8 +3129,7 @@ DEFHOOK
 (pointer_mode,
  "Define this to return the machine mode to use for pointers to\n\
 @var{address_space} if the target supports named address spaces.\n\
-The default version of this hook returns @code{ptr_mode} for the\n\
-generic address space only.",
+The default version of this hook returns @code{ptr_mode}.",
  machine_mode, (addr_space_t address_space),
  default_addr_space_pointer_mode)
 
@@ -3139,8 +3138,7 @@ DEFHOOK
 (address_mode,
  "Define this to return the machine mode to use for addresses in\n\
 @var{address_space} if the target supports named address spaces.\n\
-The default version of this hook returns @code{Pmode} for the\n\
-generic address space only.",
+The default version of this hook returns @code{Pmode}.",
  machine_mode, (addr_space_t address_space),
  default_addr_space_address_mode)