This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/17757] [4.0 Regression] emptyif.f90


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]