From 9d68a7e1124df9dcb4e7194e83c58a0bb9e3802f Mon Sep 17 00:00:00 2001 From: Klaus Kaempf Date: Tue, 21 Jul 1998 22:30:28 +0000 Subject: [PATCH] * cccp.c (do_include): Fix vax c style include handling. From-SVN: r21328 --- gcc/ChangeLog | 4 ++++ gcc/cccp.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 ' !"); -- 2.47.2