@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.
@end menu
@node Target Structure
-@section The Global @code{target} Variable
+@section The Global @code{targetm} Variable
@cindex target hooks
@cindex target functions
@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}
@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