Commit 44e55536 by Tim Josling Committed by Tim Josling

Minor fix to treelang; Update MAINTAINERS and ChangeLog to reflect this.

From-SVN: r53375
parent 2292e8fc
...@@ -11,6 +11,10 @@ ...@@ -11,6 +11,10 @@
* config-ml.in: Allow for PWDCMD to determine ML_POPDIR. * 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> 2002-05-06 Loren J. Rittle <ljrittle@acm.org>
* ltmain.sh: Detect and handle object name conflicts * ltmain.sh: Detect and handle object name conflicts
......
...@@ -142,6 +142,7 @@ Pico-Java port Steve Chamberlain sac@transmeta.com ...@@ -142,6 +142,7 @@ Pico-Java port Steve Chamberlain sac@transmeta.com
RTEMS Ports Joel Sherrill RTEMS Ports Joel Sherrill
predict.def Jan Hubicka jh@suse.cz predict.def Jan Hubicka jh@suse.cz
contrib/regression Geoff Keating geoffk@redhat.com 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 Note individuals who maintain parts of the compiler need approval to check
in changes outside of the parts of the compiler they maintain. in changes outside of the parts of the compiler they maintain.
......
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> 2002-05-07 Tim Josling <tej@melbpc.org.au>
* treetree.c: (cpp_get_options) Add. * treetree.c: (cpp_get_options) Add.
......
...@@ -1135,6 +1135,22 @@ cpp_options ...@@ -1135,6 +1135,22 @@ cpp_options
abort (); 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, /* Create the predefined scalar types of C,
and some nodes representing standard constants (0, 1, (void *) 0). and some nodes representing standard constants (0, 1, (void *) 0).
Initialize the global binding level. Initialize the global binding level.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment