1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2025-04-21 12:27:27 +03:00

- dumping now labels all vectors, even those we only reference as .

- dump objects only after all the vectors they reference have been dumped
- instead of relying on clever algorithms to dump each object only once, just
  mark them
- left "dump" enabled in "main", oops



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5392 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner
2009-08-06 04:56:47 +00:00
parent 68b4fec921
commit b5dd18c564
3 changed files with 69 additions and 22 deletions

3
obj.h
View File

@@ -165,6 +165,9 @@ struct obj {
struct vec *base;
struct obj *next;
int lineno;
/* for dumping */
int dumped;
};