[Bug tree-optimization/34123] [4.3 Regression] verify_ssa failed (definition in block 11 does not dominate use in block 7)

tbm at cyrius dot com gcc-bugzilla@gcc.gnu.org
Fri Nov 16 19:08:00 GMT 2007



------- Comment #1 from tbm at cyrius dot com  2007-11-16 19:08 -------
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */

static unsigned char sbox[] = {
};
void MD2Transform (unsigned char state[16])
{
  unsigned char t = 0;
  int i, j;
  for (i = 0; i < 16; i++)
    {
      for (j = 0; j < 2; j++)
        t = (state[j] ^= sbox[t]);
      t += i;
    }
}


-- 


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



More information about the Gcc-bugs mailing list