This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: typo in invoke.texi


I'm installing this as an obvious bug fix.  Without it makeinfo
reports:

    cd ../../gcc/gcc && makeinfo   -o gcc.info gcc.texi
    ./invoke.texi:3130: Unknown command `samp(__builtin_expect).'.
    makeinfo: Removing output file `gcc.info' due to errors; use --force to preserve.

Please try makeinfo before committing changes to texi files.

2001-01-17  Tom Tromey  <tromey@redhat.com>

	* invoke.texi (Optimize Options): Use `{}' to around @samp
	argument.

Tom

Index: invoke.texi
===================================================================
RCS file: /cvs/gcc/egcs/gcc/invoke.texi,v
retrieving revision 1.267
diff -u -r1.267 invoke.texi
--- invoke.texi	2001/01/17 19:43:13	1.267
+++ invoke.texi	2001/01/17 20:02:06
@@ -3127,7 +3127,7 @@
 @item -fno-guess-branch-probability
 Sometimes gcc will opt to guess branch probabilities when none are
 available from either profile directed feedback (@samp{-fprofile-arcs})
-or @samp(__builtin_expect).  In a hard real-time system, people don't
+or @samp{__builtin_expect}.  In a hard real-time system, people don't
 want different runs of the compiler to produce code that has different
 behavior; minimizing non-determinism is of paramount import.  This
 switch allows users to reduce non-determinism, possibly at the expense

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]