tm.texi: Update some places for the rename of target to targetm.
authorJoseph Myers <jsm28@cam.ac.uk>
Sun, 8 Jul 2001 22:39:06 +0000 (23:39 +0100)
committerJoseph Myers <jsm28@gcc.gnu.org>
Sun, 8 Jul 2001 22:39:06 +0000 (23:39 +0100)
* doc/tm.texi: Update some places for the rename of target to
targetm.  Fix typo.

From-SVN: r43852

gcc/ChangeLog
gcc/doc/tm.texi

index 0dae0789636682800fc45300dda208e78a37f921..39eb306a372456dba2b1bf878a494cc9d6a81b36 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
+
+       * doc/tm.texi: Update some places for the rename of target to
+       targetm.  Fix typo.
+
 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
 
        * target.h (struct gcc_target): Add insert_attributes.
index 78d052e02c27f7ffd941ac216891a5bc83ef5f0a..37b84d77c5e2ed35ad5ff95a9cdd4be654027470 100644 (file)
@@ -18,14 +18,14 @@ about the target machine that does not fit into the scheme of the
 @file{.md} file.  The file @file{tm.h} should be a link to
 @file{@var{machine}.h}.  The header file @file{config.h} includes
 @file{tm.h} and most compiler source files include @file{config.h}.  The
-source file defines a variable @code{target}, which is a structure
+source file defines a variable @code{targetm}, which is a structure
 containing pointers to functions and data relating to the target
 machine.  @file{@var{machine}.c} should also contain their definitions,
 if they are not defined elsewhere in GCC, and other functions called
 through the macros defined in the @file{.h} file.
 
 @menu
-* Target Structure::    The @code{target} variable.
+* Target Structure::    The @code{targetm} variable.
 * Driver::              Controlling how the driver runs the compilation passes.
 * Run-time Target::     Defining @samp{-m} options like @option{-m68000} and @option{-m68020}.
 * Per-Function Data::   Defining data structures for per-function information.
@@ -51,7 +51,7 @@ through the macros defined in the @file{.h} file.
 @end menu
 
 @node Target Structure
-@section The Global @code{target} Variable
+@section The Global @code{targetm} Variable
 @cindex target hooks
 @cindex target functions
 
@@ -77,10 +77,10 @@ struct gcc_target targetm = TARGET_INITIALIZER;
 @end deftypevar
 
 Where a macro should be defined in the @file{.c} file in this manner to
-form part of the @code{target} structure, it is documented below as a
+form part of the @code{targetm} structure, it is documented below as a
 ``Target Hook'' with a prototype.  Many macros will change in future
 from being defined in the @file{.h} file to being part of the
-@code{target} structure.
+@code{targetm} structure.
 
 @node Driver
 @section Controlling the Compilation Driver, @file{gcc}
@@ -5669,7 +5669,7 @@ position independent code.
 @section Defining the Output Assembler Language
 
 This section describes macros whose principal purpose is to describe how
-to write instructions in assembler language--rather than what the
+to write instructions in assembler language---rather than what the
 instructions do.
 
 @menu