------- Additional Comments From steven at gcc dot gnu dot org  2005-09-18 
15:11 -------
Smaller test case: 
 
static unsigned short int crc_table[256]; 
void AC3_encode_init(void) 
{ 
  unsigned int c, n; 
  for (n = 0; n < 256; n++) 
  { 
    c = n << 8; 
    if (c & 16384) 
      c = c ^ 49155; 
    crc_table[n] = c; 
  } 
} 
 

-- 


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

Reply via email to