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
This commit is contained in:
Rask Ingemann Lambertsen 2007-08-07 12:22:08 +02:00 committed by Rask Ingemann Lambertsen
parent d2b8fb9e46
commit e492980b73
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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.