Document change in 3rd argument to DEFTREECODE.

From-SVN: r17667
This commit is contained in:
Jeff Law 1998-02-05 06:55:13 -07:00
parent 05d7b07760
commit c3356143b6
1 changed files with 12 additions and 0 deletions

View File

@ -29,4 +29,16 @@ Feb 1, 1998:
scheme. Other languages will need to be updated accordingly.
Contact amylaar@cygnus.com for additional information.
?? 1997:
In an effort to decrease cache thrashing and useless loads we've changed the
third argument to the DEFTREECODE macro to be a single char. This will
effect languages that defined their own tree codes (usually in a .def file).
Old way:
DEFTREECODE (CLASS_METHOD_DECL, "class_method_decl", "d", 0)
New way:
DEFTREECODE (CLASS_METHOD_DECL, "class_method_decl", 'd', 0)