diff options
author | Ben Elliston <bje@au.ibm.com> | 2009-02-02 09:57:08 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2009-02-02 20:57:08 +1100 |
commit | b5bde9fffe38e45c22389867b3b76bd103263d13 (patch) | |
tree | 6ac05c3fa4be5acb7cfdc5ebf603a50eb23aba9d | |
parent | 00f97e5a1a7fed19d2f305010369d4e356bc5d4d (diff) | |
download | gcc-b5bde9fffe38e45c22389867b3b76bd103263d13.zip gcc-b5bde9fffe38e45c22389867b3b76bd103263d13.tar.gz gcc-b5bde9fffe38e45c22389867b3b76bd103263d13.tar.bz2 |
tm.texi (Storage Layout): Fix TARGET_ALIGN_ANON_BITFIELD and TARGET_NARROW_VOLATILE_BITFIELD macro names.
* doc/tm.texi (Storage Layout): Fix TARGET_ALIGN_ANON_BITFIELD and
TARGET_NARROW_VOLATILE_BITFIELD macro names.
From-SVN: r143863
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/tm.texi | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index efde6da..4951744 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-02-02 Ben Elliston <bje@au.ibm.com> + + * doc/tm.texi (Storage Layout): Fix TARGET_ALIGN_ANON_BITFIELD and + TARGET_NARROW_VOLATILE_BITFIELD macro names. + 2009-01-31 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> * doc/install.texi (hppa*-hp-hpux*): Update binutils and linker diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 92de6e5..0d8c787 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -1307,14 +1307,14 @@ Like @code{PCC_BITFIELD_TYPE_MATTERS} except that its effect is limited to aligning a bit-field within the structure. @end defmac -@deftypefn {Target Hook} bool TARGET_ALIGN_ANON_BITFIELDS (void) +@deftypefn {Target Hook} bool TARGET_ALIGN_ANON_BITFIELD (void) When @code{PCC_BITFIELD_TYPE_MATTERS} is true this hook will determine whether unnamed bitfields affect the alignment of the containing structure. The hook should return true if the structure should inherit the alignment requirements of an unnamed bitfield's type. @end deftypefn -@deftypefn {Target Hook} bool TARGET_NARROW_VOLATILE_BITFIELDS (void) +@deftypefn {Target Hook} bool TARGET_NARROW_VOLATILE_BITFIELD (void) This target hook should return @code{true} if accesses to volatile bitfields should use the narrowest mode possible. It should return @code{false} if these accesses should use the bitfield container type. |