diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-08-01 17:57:27 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-08-01 17:57:27 +0000 |
commit | ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f (patch) | |
tree | 86574f9925b42a9611cf138f95cf23040f8ab07f /gcc/cpplib.c | |
parent | 60a78ccfac331b0d4ff71fcdddcfc302817eb110 (diff) | |
download | gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.zip gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.tar.gz gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.tar.bz2 |
alias.c: Fix comment formatting.
* alias.c: Fix comment formatting.
* bitmap.c: Likewise.
* builtins.c: Likewise.
* calls.c: Likewise.
* c-common.c: Likewise.
* c-decl.c: Likewise.
* c-dump.c: Likewise.
* c-lex.c: Likewise.
* collect2.c: Likewise.
* combine.c: Likewise.
* conflict.c: Likewise.
* cppfiles.c: Likewise.
* cppinit.c: Likewise.
* cpplex.c: Likewise.
* cpplib.c: Likewise.
* cppmacro.c: Likewise.
* cppspec.c: Likewise.
* c-pragma.c: Likewise.
* crtstuff.c: Likewise.
* cse.c: Likewise.
* cselib.c: Likewise.
* c-semantics.c: Likewise.
* c-typeck.c: Likewise.
From-SVN: r44547
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r-- | gcc/cpplib.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c index cea54f4..06bf674 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -154,7 +154,7 @@ SCCS_ENTRY /* 0 SVR4? */ instead of void, because some old compilers have trouble with pointers to functions returning void. */ -/* Don't invoke CONCAT2 with any whitespace or K&R cc will fail. */ +/* Don't invoke CONCAT2 with any whitespace or K&R cc will fail. */ #define D(name, t, o, f) static void CONCAT2(do_,name) PARAMS ((cpp_reader *)); DIRECTIVE_TABLE #undef D @@ -167,7 +167,7 @@ enum }; #undef D -/* Don't invoke CONCAT2 with any whitespace or K&R cc will fail. */ +/* Don't invoke CONCAT2 with any whitespace or K&R cc will fail. */ #define D(name, t, origin, flags) \ { CONCAT2(do_,name), (const U_CHAR *) STRINGX(name), \ sizeof STRINGX(name) - 1, origin, flags }, @@ -914,7 +914,7 @@ do_ident (pfile) This implementation never macro-expands the text after #pragma. */ /* Sub-handlers for the pragmas needing treatment here. - They return 1 if the token buffer is to be popped, 0 if not. */ + They return 1 if the token buffer is to be popped, 0 if not. */ struct pragma_entry { struct pragma_entry *next; @@ -1647,7 +1647,7 @@ do_unassert (pfile) /* Process the string STR as if it appeared as the body of a #define. If STR is just an identifier, define it with value 1. If STR has anything after the identifier, then it should - be identifier=definition. */ + be identifier=definition. */ void cpp_define (pfile, str) @@ -1696,7 +1696,7 @@ cpp_undef (pfile, macro) run_directive (pfile, T_UNDEF, BUF_CL_OPTION, macro, strlen (macro)); } -/* Process the string STR as if it appeared as the body of a #assert. */ +/* Process the string STR as if it appeared as the body of a #assert. */ void cpp_assert (pfile, str) cpp_reader *pfile; @@ -1705,7 +1705,7 @@ cpp_assert (pfile, str) handle_assertion (pfile, str, T_ASSERT); } -/* Process STR as if it appeared as the body of an #unassert. */ +/* Process STR as if it appeared as the body of an #unassert. */ void cpp_unassert (pfile, str) cpp_reader *pfile; |