diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-01-25 02:00:18 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-25 02:00:18 -0700 |
commit | f69eecfbd55bb59f1f49afac9849f30116a5e2c3 (patch) | |
tree | a86f004cf48920ea34fdaaaa5de69335a0b03f8a /gcc | |
parent | 67c2a92854761b0dcf05a6c2d0fa636a55e6be60 (diff) | |
download | gcc-f69eecfbd55bb59f1f49afac9849f30116a5e2c3.zip gcc-f69eecfbd55bb59f1f49afac9849f30116a5e2c3.tar.gz gcc-f69eecfbd55bb59f1f49afac9849f30116a5e2c3.tar.bz2 |
Fix mismatched parens.
From-SVN: r17471
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/extend.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/extend.texi b/gcc/extend.texi index f50c207..16f535c 100644 --- a/gcc/extend.texi +++ b/gcc/extend.texi @@ -2019,8 +2019,8 @@ This attribute specifies a minimum alignment (in bytes) for variables of the specified type. For example, the declarations: @smallexample -struct S @{ short f[3]; @} __attribute__ ((aligned (8)); -typedef int more_aligned_int __attribute__ ((aligned (8)); +struct S @{ short f[3]; @} __attribute__ ((aligned (8))); +typedef int more_aligned_int __attribute__ ((aligned (8))); @end smallexample @noindent |