diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2002-04-11 21:33:31 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2002-04-11 21:33:31 +0000 |
commit | 7825d1cf588df417029157ce34a21bb1a4a1c0ca (patch) | |
tree | 1b5c78ab7f255fa55792879f194ecbdf22200242 /gcc/doc/extend.texi | |
parent | ab50d72b6975cb557de6079b0cb1d98f3fc658ab (diff) | |
download | gcc-7825d1cf588df417029157ce34a21bb1a4a1c0ca.tar.gz |
extend.texi: Remove old claim that typedefs cannot have an alignment attribute.
* doc/extend.texi: Remove old claim that typedefs cannot have
an alignment attribute.
From-SVN: r52180
Diffstat (limited to 'gcc/doc/extend.texi')
-rw-r--r-- | gcc/doc/extend.texi | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index f1f499d8b57..2545acfa23b 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -2866,11 +2866,6 @@ struct foo @{ int x[2] __attribute__ ((aligned (8))); @}; This is an alternative to creating a union with a @code{double} member that forces the union to be double-word aligned. -It is not possible to specify the alignment of functions; the alignment -of functions is determined by the machine's requirements and cannot be -changed. You cannot specify alignment for a typedef name because such a -name is just an alias, not a distinct type. - As in the preceding examples, you can explicitly specify the alignment (in bytes) that you wish the compiler to use for a given variable or structure field. Alternatively, you can leave out the alignment factor |