sourcebuild.texi (Test Directives): Fix "compile" and "assemble" descriptions which...
authorRask Ingemann Lambertsen <rask@sygehus.dk>
Tue, 7 Aug 2007 10:22:08 +0000 (12:22 +0200)
committerRask Ingemann Lambertsen <rask@gcc.gnu.org>
Tue, 7 Aug 2007 10:22:08 +0000 (10:22 +0000)
* doc/sourcebuild.texi (Test Directives): Fix "compile" and
"assemble" descriptions which were swapped.

From-SVN: r127269

gcc/ChangeLog
gcc/doc/sourcebuild.texi

index 73bf46a508f28cc62471df63b183f0eb7ad251bb..50b4bbbf6da81e1061faf7bcce63a2dbd526ff29 100644 (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.
index fc564908efb24ab1d62a232b769636651c147a6c..684069189dcbcc5e3491e25fd77efe41a9d6afbc 100644 (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.