From: Rask Ingemann Lambertsen Date: Tue, 7 Aug 2007 10:22:08 +0000 (+0200) Subject: sourcebuild.texi (Test Directives): Fix "compile" and "assemble" descriptions which... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e492980b7349436c6a473e4950b54d0f0bd8b772;p=gcc.git 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 --- 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 + + * doc/sourcebuild.texi (Test Directives): Fix "compile" and + "assemble" descriptions which were swapped. + 2007-08-06 Chao-ying Fu * 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.