]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* cccp.c (do_include): Fix vax c style include handling.
authorKlaus Kaempf <kkaempf@rmi.de>
Tue, 21 Jul 1998 22:30:28 +0000 (22:30 +0000)
committerJeff Law <law@gcc.gnu.org>
Tue, 21 Jul 1998 22:30:28 +0000 (16:30 -0600)
From-SVN: r21328

gcc/ChangeLog
gcc/cccp.c

index f7920dae730d5c5ac409badcc9581274fd270ec9..a8b518bafea3250ced7fbe61e2ae9e9e9da97218 100644 (file)
@@ -1,3 +1,7 @@
+Tue Jul 21 23:28:35 1998  Klaus Kaempf <kkaempf@rmi.de> 
+
+       * cccp.c (do_include): Fix vax c style include handling.
+
 Tue Jul 21 15:49:31 1998  David Edelsohn  <edelsohn@mhpcc.edu>
 
        * rs6000.h (PREDICATE_CODES): Add CONSTANT_P_RTX.
index 1bd7649ea7c227b306b5e796f994f9c8f516c045..2e87c3692e36e438c0406b812b0f1bca900cbc59 100644 (file)
@@ -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 <filename.h>' !");