------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-23 
14:15 -------
Here is the reduced testcase:
extern const char *f_extensions[];
const char *f_extensions[]= { ".cnf", 0 };
void f();
int g(int ij)
{
  char **tmp_ext;
  unsigned i;
  
  for (i= 0; i < (unsigned) ij; i++)
  {
    f();
    tmp_ext= (char**) &f_extensions[0];
    if (*tmp_ext)
        return 0;
  }
}


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-04-23 14:15:17
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21167

Reply via email to