mirror of git://gcc.gnu.org/git/gcc.git
Document change in 3rd argument to DEFTREECODE.
From-SVN: r17667
This commit is contained in:
parent
05d7b07760
commit
c3356143b6
|
|
@ -29,4 +29,16 @@ Feb 1, 1998:
|
||||||
scheme. Other languages will need to be updated accordingly.
|
scheme. Other languages will need to be updated accordingly.
|
||||||
Contact amylaar@cygnus.com for additional information.
|
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)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue