diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-22 22:02:16 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-22 22:02:16 +0000 |
commit | b1a9ff83ec06ce09e7954014c562782edbca250a (patch) | |
tree | d48c115c626bc1be9e16db74afd070b025a875ce /gcc/cppmacro.c | |
parent | b87d7646dd59c2af0141f5a66995c013e6c636d5 (diff) | |
download | gcc-b1a9ff83ec06ce09e7954014c562782edbca250a.tar.gz |
* cpperror.c: Fix formatting.
* cppexp.c: Likewise.
* cppfiles.c: Likewise.
* cpphash.c: Likewise.
* cpphash.h: Likewise.
* cppinit.c: Likewise.
* cpplex.c: Likewise.
* cpplib.c: Likewise.
* cppmacro.c: Likewise.
* cppmain.c: Likewise.
* cppspec.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53751 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppmacro.c')
-rw-r--r-- | gcc/cppmacro.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/cppmacro.c b/gcc/cppmacro.c index 797a30428f8..40a9a078045 100644 --- a/gcc/cppmacro.c +++ b/gcc/cppmacro.c @@ -569,7 +569,7 @@ collect_args (pfile, node) the invocation at all. e.g. #define debug(format, args...) something debug("string"); - + This is exactly the same as if there had been an empty rest argument - debug("string", ). */ @@ -1035,7 +1035,7 @@ cpp_get_token (pfile) if (node->type != NT_MACRO || (result->flags & NO_EXPAND)) break; - + if (!(node->flags & NODE_DISABLED)) { if (!pfile->state.prevent_expansion @@ -1480,7 +1480,7 @@ check_trad_stringification (pfile, macro, string) { unsigned int i, len; const uchar *p, *q, *limit = string->text + string->len; - + /* Loop over the string. */ for (p = string->text; p < limit; p = q) { @@ -1584,9 +1584,9 @@ cpp_macro_definition (pfile, node) } if (i + 1 < macro->paramc) - /* Don't emit a space after the comma here; we're trying - to emit a Dwarf-friendly definition, and the Dwarf spec - forbids spaces in the argument list. */ + /* Don't emit a space after the comma here; we're trying + to emit a Dwarf-friendly definition, and the Dwarf spec + forbids spaces in the argument list. */ *buffer++ = ','; else if (macro->variadic) *buffer++ = '.', *buffer++ = '.', *buffer++ = '.'; |