]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tm.texi (Storage Layout): Fix TARGET_ALIGN_ANON_BITFIELD and TARGET_NARROW_VOLATILE_B...
authorBen Elliston <bje@au.ibm.com>
Mon, 2 Feb 2009 09:57:08 +0000 (09:57 +0000)
committerBen Elliston <bje@gcc.gnu.org>
Mon, 2 Feb 2009 09:57:08 +0000 (20:57 +1100)
* doc/tm.texi (Storage Layout): Fix TARGET_ALIGN_ANON_BITFIELD and
TARGET_NARROW_VOLATILE_BITFIELD macro names.

From-SVN: r143863

gcc/ChangeLog
gcc/doc/tm.texi

index efde6da487c7bcd74d27cfd7456b33b6870d745f..49517440472fc0d55b8f7728da87c9ea67c0f467 100644 (file)
@@ -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
index 92de6e5b8ac4226291dadfff947b0ef4a25b7c9d..0d8c787276daaf8e2f22093e2d84198f46305b0d 100644 (file)
@@ -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.