From: Richard Kenner Date: Fri, 24 Jun 1994 23:09:17 +0000 (-0400) Subject: (create_definition): Eliminate whitespace before and after macro X-Git-Tag: misc/cutover-egcs-0~6375 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9966b3915fad5ca4e14abc347ec22c3b0a9e159a;p=thirdparty%2Fgcc.git (create_definition): Eliminate whitespace before and after macro definitions. From-SVN: r7568 --- diff --git a/gcc/cccp.c b/gcc/cccp.c index 60e5f15995a2..beabe383b247 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -5333,8 +5333,9 @@ create_definition (buf, limit, op) } ++bp; /* skip paren */ - /* Skip exactly one space or tab if any. */ - if (bp < limit && (*bp == ' ' || *bp == '\t')) ++bp; + /* Skip spaces and tabs if any. */ + while (bp < limit && (*bp == ' ' || *bp == '\t')) + ++bp; /* now everything from bp before limit is the definition. */ defn = collect_expansion (bp, limit, argno, arg_ptrs); defn->rest_args = rest_args; @@ -5357,10 +5358,12 @@ create_definition (buf, limit, op) defn->args.argnames[i] = 0; } } else { - /* simple expansion or empty definition; gobble it */ - if (is_hor_space[*bp]) - ++bp; /* skip exactly one blank/tab char */ - /* now everything from bp before limit is the definition. */ + /* Simple expansion or empty definition. */ + + /* Skip spaces and tabs if any. */ + while (bp < limit && (*bp == ' ' || *bp == '\t')) + ++bp; + /* Now everything from bp before limit is the definition. */ defn = collect_expansion (bp, limit, -1, NULL_PTR); defn->args.argnames = (U_CHAR *) ""; } @@ -5818,20 +5821,6 @@ collect_expansion (buf, end, nargs, arglist) } } - if (limit < end) { - /* Convert trailing whitespace to Newline-markers. */ - while (limit < end && is_space[*limit]) { - *exp_p++ = '\n'; - *exp_p++ = *limit++; - } - } else if (!traditional && expected_delimiter == 0) { - /* There is no trailing whitespace, so invent some in ANSI mode. - But not if "inside a string" (which in ANSI mode - happens only for -D option). */ - *exp_p++ = '\n'; - *exp_p++ = ' '; - } - *exp_p = '\0'; defn->length = exp_p - defn->expansion;