This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/19130] New: DSE not working?
- From: "kazu at cs dot umass dot edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 22 Dec 2004 12:07:25 -0000
- Subject: [Bug tree-optimization/19130] New: DSE not working?
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
Consider:
int y;
void
foo (void)
{
y = 0;
y = 1;
}
I get:
foo ()
{
<bb 0>:
y = 0;
y = 1;
return;
}
--
Summary: DSE not working?
Product: gcc
Version: unknown
Status: UNCONFIRMED
Keywords: missed-optimization
Severity: normal
Priority: P2
Component: tree-optimization
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: kazu at cs dot umass dot edu
CC: gcc-bugs at gcc dot gnu dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19130