summaryrefslogtreecommitdiffstats
path: root/gcc/cccp.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-07-21 22:31:41 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-07-21 22:31:41 +0000
commite52eb8a848186452a66c167ff748385e7fee2617 (patch)
tree55a6ddd69b2bb1c01c2cbf747b1ae00f262e9b2a /gcc/cccp.c
parentbb09ad4e9f578f8e8503808807846e037559d77a (diff)
downloadppe42-gcc-e52eb8a848186452a66c167ff748385e7fee2617.tar.gz
ppe42-gcc-e52eb8a848186452a66c167ff748385e7fee2617.zip
8
* cccp.c (do_include): Fix vax c style include handling. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@21330 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cccp.c')
-rw-r--r--gcc/cccp.c2
1 files changed, 1 insertions, 1 deletions
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 <filename.h>' !");
OpenPOWER on IntegriCloud