diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2011-02-28 06:35:43 +0000 |
---|---|---|
committer | Ralf Wildenhues <rwild@gcc.gnu.org> | 2011-02-28 06:35:43 +0000 |
commit | 15bf6f3af7b8739c33286ac2564d7805e32c62f3 (patch) | |
tree | 11cbfb26fc9bc5048e27eff3470939052f489461 | |
parent | 9dfd4d1c3bdb75305862d8922e2fca8f39d02c6e (diff) | |
download | gcc-15bf6f3af7b8739c33286ac2564d7805e32c62f3.zip gcc-15bf6f3af7b8739c33286ac2564d7805e32c62f3.tar.gz gcc-15bf6f3af7b8739c33286ac2564d7805e32c62f3.tar.bz2 |
docs: fix Function Attributes table nesting.
gcc/:
* doc/extend.texi (Function Attributes): Avoid deeply (and
wrongly) nested tables.
From-SVN: r170555
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/extend.texi | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca9f366..543f3e4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-02-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + * doc/extend.texi (Function Attributes): Avoid deeply (and + wrongly) nested tables. + 2011-02-27 Jakub Jelinek <jakub@redhat.com> PR middle-end/47903 diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 67513608..eaad089 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -3291,8 +3291,6 @@ int core2_func (void) __attribute__ ((__target__ ("arch=core2"))); int sse3_func (void) __attribute__ ((__target__ ("sse3"))); @end smallexample -@table @samp -@item i386 target attributes On the 386, the following options are allowed: @table @samp @@ -3435,8 +3433,8 @@ Specify which floating point unit to use. The @code{target("fpmath=sse,387")} option must be specified as @code{target("fpmath=sse+387")} because the comma would separate different options. +@end table -@item PowerPC target attributes On the PowerPC, the following options are allowed: @table @samp @@ -3608,8 +3606,6 @@ you do specify the @code{target("cpu=@var{CPU}")} attribute, compilation will tune for the @var{CPU} architecture, and not the default tuning specified on the command line. @end table -@end table -@end table On the 386/x86_64 and PowerPC backends, you can use either multiple strings to specify multiple options, or you can separate the option |