* cppinit.c (do_includes): Fix typo.
authorNeil Booth <neil@daikokuya.demon.co.uk>
Thu, 11 Jan 2001 22:20:51 +0000 (22:20 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Thu, 11 Jan 2001 22:20:51 +0000 (22:20 +0000)
From-SVN: r38928

gcc/ChangeLog
gcc/cppinit.c

index d5254219a091e5f6b5dc2c3afffb8c6c0858f5e1..0bb96469ddc34356a5551f984f670af5df1b1eb7 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-11  Neil Booth  <neil@daikokuya.demon.co.uk>
+
+        * cppinit.c (do_includes): Fix typo.
+
 2001-01-11  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
 
        * config/m68hc11/m68hc11.md (cmphi_1): Make sure reloading
@@ -23,6 +27,7 @@
 
         * cppinit.c (cpp_start_read): If -fpreprocessed, ignore
         -D, -U and -A, and don't initialize the builtins.
+       (do_includes): Error if -include or -imacros with -fpreprocessed.
         * cppmain.c (cb_define, cb_undef): Unconditionally process
         the callback.
         * tradcpp.c (main): Fix typo.
index b7cbbf2eac7ba095d3138afc1ce9cb077a9bab00..50896b88809b967928a0b473716ca8933bd75cd9 100644 (file)
@@ -851,7 +851,7 @@ do_includes (pfile, p, scan)
 
       /* Don't handle if -fpreprocessed.  Later: maybe update this to
         use the #include "" search path if cpp_read_file fails.  */
-      if (CPP_OPTION (pfile, preprocessed))
+      if (CPP_OPTION (pfile, preprocessed))
        cpp_error (pfile, "-include and -imacros cannot be used with -fpreprocessed");
       else if (_cpp_read_file (pfile, p->arg) && scan)
        cpp_scan_buffer_nooutput (pfile, 0);