decl2.c: s/data/opts/ when initializing cpp_reader structure.
authorZack Weinberg <zack@rabi.phys.columbia.edu>
Mon, 7 Dec 1998 14:20:55 +0000 (14:20 +0000)
committerDave Brolley <brolley@gcc.gnu.org>
Mon, 7 Dec 1998 14:20:55 +0000 (09:20 -0500)
1998-12-07  Zack Weinberg  <zack@rabi.phys.columbia.edu>
* cp/decl2.c: s/data/opts/ when initializing cpp_reader
          structure.

From-SVN: r24155

gcc/cp/ChangeLog
gcc/cp/decl2.c

index 25e53036020f75c2e7d433372c07f74d559dce25..a62d80bf3c02d9cf36522c0c77d28fb72635daf2 100644 (file)
@@ -1,3 +1,8 @@
+1998-12-07  Zack Weinberg  <zack@rabi.phys.columbia.edu>
+
+       * cp/decl2.c: s/data/opts/ when initializing cpp_reader 
+          structure.
+       
 1998-12-07  Jason Merrill  <jason@yorick.cygnus.com>
 
        * decl.c (build_typename_type): Set DECL_ARTIFICIAL.
index 7f32cf8ba80c72910f0c6391858853458c575994..9fc24fedc5fc21ac7c9332479b8045f49b92901a 100644 (file)
@@ -526,7 +526,7 @@ lang_decode_option (argc, argv)
   if (! cpp_initialized)
     {
       cpp_reader_init (&parse_in);
-      parse_in.data = &parse_options;
+      parse_in.opts = &parse_options;
       cpp_options_init (&parse_options);
       cpp_initialized = 1;
     }