Commit d2d42a91 by Simon Law Committed by Gerald Pfeifer

bugreport.texi: Fix paragraph breaking between sections in preparation for TeXinfo's paragraph...

	* doc/bugreport.texi: Fix paragraph breaking between sections
	in preparation for TeXinfo's paragraph indentation fixes.
	* doc/extend.texi: Ditto.
	* doc/invoke.texi: Ditto.
	* doc/objc.texi: Ditto.
	* doc/gcov.texi: Wrap 'gcov' in @command{}.
	* doc/invoke.texi (Darwin Options): Add a preamble.

From-SVN: r65482
parent 62520b20
2003-04-11 Simon Law <sfllaw@engmail.uwaterloo.ca>
* doc/bugreport.texi: Fix paragraph breaking between sections
in preparation for TeXinfo's paragraph indentation fixes.
* doc/extend.texi: Ditto.
* doc/invoke.texi: Ditto.
* doc/objc.texi: Ditto.
* doc/gcov.texi: Wrap 'gcov' in @command{}.
* doc/invoke.texi (Darwin Options): Add a preamble.
2003-04-11 Richard Henderson <rth@redhat.com>
* config/i386/i386.c (tls_model_chars): Remove.
......
......@@ -103,6 +103,7 @@ suggestions for improvement of GCC are welcome in any case.
@section Where to Report Bugs
@cindex bug report mailing lists
@kindex gcc-bugs@@gcc.gnu.org or bug-gcc@@gnu.org
Send bug reports for the GNU Compiler Collection to
@email{gcc-bugs@@gcc.gnu.org}. In accordance with the GNU-wide
convention, in which bug reports for tool ``foo'' are sent
......
......@@ -486,7 +486,6 @@ extensions, accepted by GCC in C89 mode and in C++.
@c the above section title wrapped and causes an underfull hbox.. i
@c changed it from "within" to "in". --mew 4feb93
A compound statement enclosed in parentheses may appear as an expression
in GNU C@. This allows you to use loops, switches, and local variables
within an expression.
......@@ -1033,6 +1032,7 @@ This will work with all versions of GCC@.
@cindex lvalues, generalized
@cindex extensions, @code{?:}
@cindex @code{?:} extensions
Compound expressions, conditional expressions and casts are allowed as
lvalues provided their operands are lvalues. This means that you can take
their addresses or store values into them.
......@@ -7309,7 +7309,6 @@ If any calls were not inlined, you will get linker errors.
@node Template Instantiation
@section Where's the Template?
@cindex template instantiation
C++ templates are the first language feature to require more
......@@ -7455,7 +7454,6 @@ more discussion of these pragmas.
@node Bound member functions
@section Extracting the function pointer from a bound pointer to member function
@cindex pmf
@cindex pointer to member function
@cindex bound pointer to member function
......
......@@ -209,14 +209,15 @@ Unconditional branches are normally not interesting.
@end table
Gcov should be run with the current directory the same as that when you
invoked the compiler. Otherwise it will not be able to locate the source
files. Gcov produces files called @file{@var{mangledname}.gcov} in the
current directory. These contain the coverage information of the source
file they correspond to. One @file{.gcov} file is produced for each
source file containing code, which was compiled to produce the data
files. The @file{.gcov} files contain the ':' separated fields along
with program source code. The format is
@command{gcov} should be run with the current directory the same as that
when you invoked the compiler. Otherwise it will not be able to locate
the source files. @command{gcov} produces files called
@file{@var{mangledname}.gcov} in the current directory. These contain
the coverage information of the source file they correspond to.
One @file{.gcov} file is produced for each source file containing code,
which was compiled to produce the data files. The @file{.gcov} files
contain the ':' separated fields along with program source code. The
format is
@smallexample
@var{execution_count}:@var{line_number}:@var{source line text}
......
......@@ -66,7 +66,6 @@ for contributors to GCC@.
@cindex options, GCC command
@c man begin DESCRIPTION
When you invoke GCC, it normally does preprocessing, compilation,
assembly and linking. The ``overall options'' allow you to stop this
process at an intermediate stage. For example, the @option{-c} option
......@@ -4987,6 +4986,7 @@ are processed in order, from left to right.
@node Spec Files
@section Specifying subprocesses and the switches to pass to them
@cindex Spec Files
@command{gcc} is a driver program. It performs its job by invoking a
sequence of other programs to do the work of compiling, assembling and
linking. GCC interprets its command-line parameters and uses these to
......@@ -6441,6 +6441,7 @@ of executing a function pointer if this option is enabled.
@node MN10200 Options
@subsection MN10200 Options
@cindex MN10200 options
These @option{-m} options are defined for Matsushita MN10200 architectures:
@table @gcctabopt
......@@ -6456,6 +6457,7 @@ This option makes symbolic debugging impossible.
@node MN10300 Options
@subsection MN10300 Options
@cindex MN10300 options
These @option{-m} options are defined for Matsushita MN10300 architectures:
@table @gcctabopt
......@@ -7414,6 +7416,10 @@ This option sets flags for both the preprocessor and linker.
@node Darwin Options
@subsection Darwin Options
@cindex Darwin options
These options are defined for all architectures running the Darwin operating
system. They are useful for compatibility with other Mac OS compilers.
@table @gcctabopt
@item -all_load
@opindex all_load
......@@ -11176,7 +11182,6 @@ The default without @option{-fpic} is @code{initial-exec}; with
@cindex environment variables
@c man begin ENVIRONMENT
This section describes several environment variables that affect how GCC
operates. Some of them work by specifying directories or prefixes to use
when searching for various kinds of files. Some are used to specify other
......
......@@ -25,7 +25,6 @@ comments about this document to Ovidiu Predescu
@node Executing code before main, Type encoding, Objective-C, Objective-C
@section @code{+load}: Executing code before main
The GNU Objective-C runtime provides a way that allows you to execute
code before the execution of the program enters the @code{main}
function. The code is executed on a per-class and a per-category basis,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment