This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: [tree-ssa] dom1 bug.
On Wed, 2003-12-17 at 15:18, Daniel Berlin wrote:
> >
> >> Which looks right to me.
> >
> > It is, its just not what I was getting. huh.
> >
> > Andrew
> >
Actually, I have just found it. There is a part of dom
(vdefs_disappeared()) which is using the original vdefs of a stmt after
a call to get_stmt_operands(). At which point they have been free'd of
course. So when I stomp on the memory, I get different results.
In theory when I fix that, it should be OK.
Andrew