diff options
| author | rask <rask@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-07 10:22:08 +0000 |
|---|---|---|
| committer | rask <rask@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-07 10:22:08 +0000 |
| commit | b2eb12deca1710ccf980f6beac86f9ad112abddf (patch) | |
| tree | a6b829b3b34e5688b1da5a1aa7a3b3fd07896a13 | |
| parent | 60e85f7367c6735336a479147cc80d1285f9fc92 (diff) | |
| download | ppe42-gcc-b2eb12deca1710ccf980f6beac86f9ad112abddf.tar.gz ppe42-gcc-b2eb12deca1710ccf980f6beac86f9ad112abddf.zip | |
* doc/sourcebuild.texi (Test Directives): Fix "compile" and
"assemble" descriptions which were swapped.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127269 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 73bf46a508f..50b4bbbf6da 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 fc564908efb..684069189dc 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. |

