This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/19098] New: tree-ssa-dom.c has an "if" statement whose condition is probably wrong
- 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: 21 Dec 2004 05:59:27 -0000
- Subject: [Bug tree-optimization/19098] New: tree-ssa-dom.c has an "if" statement whose condition is probably wrong
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
tree-ssa-dom.c has the following
if (!e->flags & EDGE_DFS_BACK)
which is always 0 because !e->flags is always 0 or 1, and
EDGE_DFS_BACK is 32.
--
Summary: tree-ssa-dom.c has an "if" statement whose condition is
probably wrong
Product: gcc
Version: unknown
Status: UNCONFIRMED
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,law at redhat dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19098