]> gcc.gnu.org Git - gcc.git/commitdiff
* fix-header.c (cb_file_change): Update prototype.
authorNeil Booth <neil@daikokuya.demon.co.uk>
Sun, 12 Aug 2001 09:49:44 +0000 (09:49 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Sun, 12 Aug 2001 09:49:44 +0000 (09:49 +0000)
From-SVN: r44824

gcc/ChangeLog
gcc/fix-header.c

index 880b27b0df78dccdb75866e56a200f605524cac7..9ed2dfdb2b3358f9335337deaefe170ba0d70a1d 100644 (file)
@@ -1,3 +1,7 @@
+2001-08-12  Neil Booth  <neil@daikokuya.demon.co.uk>
+
+       * fix-header.c (cb_file_change): Update prototype.
+
 2001-08-11  Zack Weinberg  <zackw@panix.com>
 
        * toplev.c (set_float_handler): Make static.
index 25d7a4f82332ab690b5eb34722084bfbd0d0f437..baaabf85febce79429f17af91267868a198ae568 100644 (file)
@@ -199,7 +199,7 @@ static int inf_skip_spaces PARAMS ((int));
 static int inf_read_upto PARAMS ((sstring *, int));
 static int inf_scan_ident PARAMS ((sstring *, int));
 static int check_protection PARAMS ((int *, int *));
-static void cb_file_change PARAMS ((cpp_reader *, const cpp_file_change *));
+static void cb_file_change PARAMS ((cpp_reader *, const struct line_map *));
 
 static void
 add_symbols (flags, names)
@@ -598,12 +598,12 @@ check_macro_names (pfile, names)
 }
 
 static void
-cb_file_change (pfile, fc)
+cb_file_change (pfile, map)
      cpp_reader *pfile ATTRIBUTE_UNUSED;
-     const cpp_file_change *fc;
+     const struct line_map *map;
 {
   /* Just keep track of current file name.  */
-  cur_file = fc->map->to_file;
+  cur_file = map->to_file;
 }
 
 static void
This page took 0.072298 seconds and 5 git commands to generate.