This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/17757] [4.0 Regression] emptyif.f90
- 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: 30 Sep 2004 20:50:52 -0000
- Subject: [Bug tree-optimization/17757] [4.0 Regression] emptyif.f90
- References: <20040930194803.17757.dje@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-09-30 20:50 -------
Here is a C example which shows that this is a regression:
void abort1(void);
int main()
{
int i;
i = 1;
if (i > 0)
i = 2;
if (i != 2) abort1();
if (i==0);
else if (i == 2)
i = 3;
if (i != 3) abort1();
}
: Search converges between 2004-09-22-014001-trunk (#554) and 2004-09-22-161001-trunk
(#555).
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17757