From 1eaa657fc0497131963d854e90ed2af774258095 Mon Sep 17 00:00:00 2001 From: Klaus Kaempf Date: Tue, 21 Jul 1998 16:31:41 -0600 Subject: [PATCH] cccp.c (do_include): Fix vax c style include handling. 8 * cccp.c (do_include): Fix vax c style include handling. From-SVN: r21330 --- gcc/cccp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cccp.c b/gcc/cccp.c index 55b6e68b7ab..f684d2d3ed9 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -4547,7 +4547,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 ' !"); -- 2.30.2