Minor fix to treelang; Update MAINTAINERS and ChangeLog to reflect this.
From-SVN: r53375
This commit is contained in:
parent
2292e8fc45
commit
44e55536d9
@ -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
|
|||||||
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.
|
||||||
|
@ -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>
|
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
|
|||||||
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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user