This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
[tree-ssa] labels after returns
- From: Andrew Pinski <pinskia at physics dot uc dot edu>
- To: gcc mailing list <gcc at gcc dot gnu dot org>
- Cc: Andrew Pinski <pinskia at physics dot uc dot edu>
- Date: Mon, 12 Apr 2004 02:24:50 -0400
- Subject: [tree-ssa] labels after returns
We are removing user defined labels after returns even though they are
used.
The conversion to CFG is removing this label. This is causing the
"label"
failures on PPC Darwin which I had thought was a different issue. What
should
we be doing with this respect?
Thanks,
Andrew Pinski
testcase from gcc.c-torture/compile/20021108-1.c:
int
main()
{
l1:
return &&l1-&&l2;
l2:;
}