diff options
author | Rask Ingemann Lambertsen <rask@sygehus.dk> | 2007-08-07 12:22:08 +0200 |
---|---|---|
committer | Rask Ingemann Lambertsen <rask@gcc.gnu.org> | 2007-08-07 10:22:08 +0000 |
commit | e492980b7349436c6a473e4950b54d0f0bd8b772 (patch) | |
tree | a6b829b3b34e5688b1da5a1aa7a3b3fd07896a13 /gcc | |
parent | d2b8fb9e4661b4181548cfaa437c65788fe640f2 (diff) | |
download | gcc-e492980b7349436c6a473e4950b54d0f0bd8b772.zip gcc-e492980b7349436c6a473e4950b54d0f0bd8b772.tar.gz gcc-e492980b7349436c6a473e4950b54d0f0bd8b772.tar.bz2 |
sourcebuild.texi (Test Directives): Fix "compile" and "assemble" descriptions which were swapped.
* doc/sourcebuild.texi (Test Directives): Fix "compile" and
"assemble" descriptions which were swapped.
From-SVN: r127269
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/sourcebuild.texi | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 73bf46a..50b4bbb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-08-07 Rask Ingemann Lambertsen <rask@sygehus.dk> + + * doc/sourcebuild.texi (Test Directives): Fix "compile" and + "assemble" descriptions which were swapped. + 2007-08-06 Chao-ying Fu <fu@mips.com> * fixed-value.h: New file. diff --git a/gcc/doc/sourcebuild.texi b/gcc/doc/sourcebuild.texi index fc56490..6840691 100644 --- a/gcc/doc/sourcebuild.texi +++ b/gcc/doc/sourcebuild.texi @@ -944,9 +944,9 @@ it is executed. It is one of: @table @code @item preprocess Compile with @option{-E} to run only the preprocessor. -@item assemble -Compile with @option{-S} to produce an assembly code file. @item compile +Compile with @option{-S} to produce an assembly code file. +@item assemble Compile with @option{-c} to produce a relocatable object file. @item link Compile, assemble, and link to produce an executable file. |