cccp.c (do_include): Fix vax c style include handling.
authorKlaus Kaempf <kkaempf@rmi.de>
Tue, 21 Jul 1998 22:31:41 +0000 (16:31 -0600)
committerJeff Law <law@gcc.gnu.org>
Tue, 21 Jul 1998 22:31:41 +0000 (16:31 -0600)
8
        * cccp.c (do_include): Fix vax c style include handling.

From-SVN: r21330

gcc/cccp.c

index 55b6e68b7abe84f7889afc97e223d664f4f0d470..f684d2d3ed9e272db71253fecff2d08d0dfcf7f5 100644 (file)
@@ -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>' !");