aboutsummaryrefslogtreecommitdiff
path: root/gcc/cppmacro.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2002-05-22 22:02:16 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-05-22 22:02:16 +0000
commitdf3834838116b327a61f5a9e271e54c75ad34085 (patch)
treed48c115c626bc1be9e16db74afd070b025a875ce /gcc/cppmacro.c
parent2dd36f90d8c4f5b86667cbb11c86f6c790bd784b (diff)
downloadgcc-df3834838116b327a61f5a9e271e54c75ad34085.zip
gcc-df3834838116b327a61f5a9e271e54c75ad34085.tar.gz
gcc-df3834838116b327a61f5a9e271e54c75ad34085.tar.bz2
cpperror.c: Fix formatting.
* 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. From-SVN: r53751
Diffstat (limited to 'gcc/cppmacro.c')
-rw-r--r--gcc/cppmacro.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/cppmacro.c b/gcc/cppmacro.c
index 797a304..40a9a07 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++ = '.';