diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-11 21:33:31 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-11 21:33:31 +0000 |
commit | 34ce6f4d107552ed6bce5625f97ff8024231e846 (patch) | |
tree | 1b5c78ab7f255fa55792879f194ecbdf22200242 /gcc/doc/extend.texi | |
parent | df2ff48f1a90f72b7e49b4f1959fe9d022f944c6 (diff) | |
download | gcc-34ce6f4d107552ed6bce5625f97ff8024231e846.tar.gz |
* doc/extend.texi: Remove old claim that typedefs cannot have
an alignment attribute.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52180 138bc75d-0d04-0410-961f-82ee72b054a4
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 |