diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-10-21 20:48:46 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-10-21 20:48:46 +0000 |
commit | dd7df208958e317d0a5e1a264da7bd473563ce6f (patch) | |
tree | 86a419ca4990a999029ebf0ad1deff2788c275e2 /gcc/target.def | |
parent | d06612ae6fef2c1b82855712f18c2e03af6414a5 (diff) | |
download | gcc-dd7df208958e317d0a5e1a264da7bd473563ce6f.tar.gz |
Update documentation for address space hooks
* target.def (addr_space.pointer_mode): Update documentation
of default behavior.
(addr_space.address_mode): Likewise.
* tm.texi: Update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229144 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/target.def')
-rw-r--r-- | gcc/target.def | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/target.def b/gcc/target.def index 93478e8aeea..e4bc249939a 100644 --- a/gcc/target.def +++ b/gcc/target.def @@ -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) |