------- Comment #7 from ubizjak at gmail dot com  2008-11-06 22:11 -------
Reduced testcase, fails also on x86_64-pc-linux-gnu and i686-pc-linux-gnu/sse2,

gcc version 4.4.0 20081106 (experimental) [trunk revision 141649] (GCC) 

--cut here--
typedef struct
{
  enum { NotConnected = 0 } conn_state;
  unsigned int conn_hndl;
} AEP_CONNECTION_ENTRY;

static AEP_CONNECTION_ENTRY aep_app_conn_table[256];

void aep_mod_exp (void)
{
  int count;

  for (count = 0; count < 256; count++)
    {
      aep_app_conn_table[count].conn_state = NotConnected;
      aep_app_conn_table[count].conn_hndl = 0;
    }
}
--cut here--


-- 

ubizjak at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   GCC host triplet|i686-pc-linux-gnu           |
 GCC target triplet|x86_64-pc-mingw32           |x86-pc-linux-gnu
      Known to work|                            |4.3.2
   Target Milestone|---                         |4.4.0


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

Reply via email to