Minor fix to treelang; Update MAINTAINERS and ChangeLog to reflect this.
authorTim Josling <tej@melbpc.org.au>
Sat, 11 May 2002 01:09:48 +0000 (01:09 +0000)
committerTim Josling <timjosling@gcc.gnu.org>
Sat, 11 May 2002 01:09:48 +0000 (01:09 +0000)
From-SVN: r53375

ChangeLog
MAINTAINERS
gcc/treelang/ChangeLog
gcc/treelang/treetree.c

index 3c19c99..d8109a3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 
        * config-ml.in: Allow for PWDCMD to determine ML_POPDIR.
 
+2002-05-07  Tim Josling  <tej@melbpc.org.au>
+
+       * MAINTAINERS: Add self.
+
 2002-05-06  Loren J. Rittle <ljrittle@acm.org>
 
        * ltmain.sh: Detect and handle object name conflicts
index cc493e5..971bf35 100644 (file)
@@ -142,6 +142,7 @@ Pico-Java port              Steve Chamberlain       sac@transmeta.com
 RTEMS Ports            Joel Sherrill
 predict.def            Jan Hubicka             jh@suse.cz
 contrib/regression     Geoff Keating           geoffk@redhat.com
+treelang                Tim Josling             tej@melbpc.org.au
 
 Note individuals who maintain parts of the compiler need approval to check
 in changes outside of the parts of the compiler they maintain.
index a0ec15f..92abf83 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-11  Tim Josling  <tej@melbpc.org.au>
+
+       * treetree.c: (cpp_define) Add.
+        (cpp_get_callbacks) Add.
+       
 2002-05-07  Tim Josling  <tej@melbpc.org.au>
 
        * treetree.c: (cpp_get_options) Add.
index 34eb394..0304915 100644 (file)
@@ -1135,6 +1135,22 @@ cpp_options
   abort ();
 }
 
+/* Should not be called for treelang.   */
+
+void 
+cpp_define (cpp_reader * cr ATTRIBUTE_UNUSED, const char * c ATTRIBUTE_UNUSED)
+{
+  abort ();  
+}
+
+/* Should not be called for treelang.   */
+
+cpp_callbacks *
+cpp_get_callbacks (cpp_reader * cr ATTRIBUTE_UNUSED)
+{
+  abort ();
+}
+
 /* Create the predefined scalar types of C,
    and some nodes representing standard constants (0, 1, (void *) 0).
    Initialize the global binding level.