This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
[tree-ssa] Garbage collector x bb annotations
- From: Zdenek Dvorak <rakdver at atrey dot karlin dot mff dot cuni dot cz>
- To: gcc at gcc dot gnu dot org
- Date: Tue, 7 Oct 2003 00:31:41 +0200
- Subject: [tree-ssa] Garbage collector x bb annotations
Hello,
I have just run into the following problem: dom_children get released by
ggc_collect call in tree-ssa-pre. Allocating them by ggc seems wrong to
me, since basic block annotations are allocated from obstack and
invisible to garbage collector.
Zdenek