Commit 16f322e3 by Jeffrey A Law Committed by Jeff Law

* cpp.texi: Fix some typos.

From-SVN: r26922
parent 34842539
Thu May 13 02:25:01 1999 Jeffrey A Law (law@cygnus.com)
* cpp.texi: Fix some typos.
Thu May 13 01:49:55 1999 Graham Stott <GrahamS@RCP.co.uk> Thu May 13 01:49:55 1999 Graham Stott <GrahamS@RCP.co.uk>
* loop.c (maybe_eliminate_biv): Check regno against * loop.c (maybe_eliminate_biv): Check regno against
......
...@@ -1482,7 +1482,7 @@ pointer (the argument @samp{p} says where to find it) across whitespace ...@@ -1482,7 +1482,7 @@ pointer (the argument @samp{p} says where to find it) across whitespace
characters: characters:
@example @example
#define SKIP_SPACES (p, limit) \ #define SKIP_SPACES(p, limit) \
@{ register char *lim = (limit); \ @{ register char *lim = (limit); \
while (p != lim) @{ \ while (p != lim) @{ \
if (*p++ != ' ') @{ \ if (*p++ != ' ') @{ \
...@@ -1518,7 +1518,7 @@ The definition of the macro @samp{SKIP_SPACES} can be altered to solve ...@@ -1518,7 +1518,7 @@ The definition of the macro @samp{SKIP_SPACES} can be altered to solve
this problem, using a @samp{do @dots{} while} statement. Here is how: this problem, using a @samp{do @dots{} while} statement. Here is how:
@example @example
#define SKIP_SPACES (p, limit) \ #define SKIP_SPACES(p, limit) \
do @{ register char *lim = (limit); \ do @{ register char *lim = (limit); \
while (p != lim) @{ \ while (p != lim) @{ \
if (*p++ != ' ') @{ \ if (*p++ != ' ') @{ \
......
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