Document change in 3rd argument to DEFTREECODE.
authorJeff Law <law@gcc.gnu.org>
Thu, 5 Feb 1998 13:55:13 +0000 (06:55 -0700)
committerJeff Law <law@gcc.gnu.org>
Thu, 5 Feb 1998 13:55:13 +0000 (06:55 -0700)
From-SVN: r17667

gcc/LANGUAGES

index 31bae9fd47797f58e4945cb03846721b5c218dcf..216ad2e798f66ce23f1d068c59e676fdda563013 100644 (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)