|
From: Keith J. <bu...@us...> - 2002-08-23 20:10:54
|
Update of /cvsroot/cup-language/cup/doc
In directory usw-pr-cvs1:/tmp/cvs-serv28062
Modified Files:
TODO
Log Message:
updated
Index: TODO
===================================================================
RCS file: /cvsroot/cup-language/cup/doc/TODO,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** TODO 23 Aug 2002 19:02:57 -0000 1.3
--- TODO 23 Aug 2002 20:10:50 -0000 1.4
***************
*** 19,22 ****
--- 19,43 ----
* > < >= <= == != ++ --
* Compile debug info
+ * 'compress' data section (no duplicates):
+ var x;
+ var k = 1;
+ x = 1;
+ k = 2;
+
+ Data should be:
+ x
+ k
+ 1
+ 2
+
+ NOT:
+ x
+ k
+ 1
+ x
+ 1
+ k
+ 2
+
Virtual Machine
|