From: Klaus Kaempf Date: Tue, 21 Jul 1998 22:30:28 +0000 (+0000) Subject: * cccp.c (do_include): Fix vax c style include handling. X-Git-Tag: prereleases/egcs-1.1-prerelease~187 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d68a7e1124df9dcb4e7194e83c58a0bb9e3802f;p=thirdparty%2Fgcc.git * cccp.c (do_include): Fix vax c style include handling. From-SVN: r21328 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f7920dae730d..a8b518bafea3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 21 23:28:35 1998 Klaus Kaempf + + * cccp.c (do_include): Fix vax c style include handling. + Tue Jul 21 15:49:31 1998 David Edelsohn * rs6000.h (PREDICATE_CODES): Add CONSTANT_P_RTX. diff --git a/gcc/cccp.c b/gcc/cccp.c index 1bd7649ea7c2..2e87c3692e36 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -4442,7 +4442,7 @@ get_filename: */ /* Note: The argument of ISALPHA() can be evaluated twice, so do the pre-decrement outside of the macro. */ - if (retried && (--fbeg, ISALPHA(*(U_CHAR *) (fbeg)))) { + if (retried && (--fin, ISALPHA(*(U_CHAR *) (fin)))) { while (fin != limit && (!ISSPACE(*fin))) *fend++ = *fin++; warning ("VAX-C-style include specification found, use '#include ' !");