diff options
author | Klaus Kaempf <kkaempf@rmi.de> | 1998-07-21 16:31:41 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-07-21 16:31:41 -0600 |
commit | 1eaa657fc0497131963d854e90ed2af774258095 (patch) | |
tree | 55a6ddd69b2bb1c01c2cbf747b1ae00f262e9b2a /gcc | |
parent | 244058f785038c71210e1091f59292d371bfb175 (diff) | |
download | gcc-1eaa657fc0497131963d854e90ed2af774258095.zip gcc-1eaa657fc0497131963d854e90ed2af774258095.tar.gz gcc-1eaa657fc0497131963d854e90ed2af774258095.tar.bz2 |
cccp.c (do_include): Fix vax c style include handling.
8
* cccp.c (do_include): Fix vax c style include handling.
From-SVN: r21330
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cccp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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>' !"); |