This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/15784] fold misses binary optimization
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 3 Jun 2004 00:31:09 -0000
- Subject: [Bug tree-optimization/15784] fold misses binary optimization
- References: <20040602204532.15784.pinskia@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-06-03 00:31 -------
#define abs(x) x>0?x:-x
int f(int x, int y)
{
return (abs(x)) == 0;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15784