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/34005] [4.3 Regression] ICE: verify_ssa failed (expected an SSA_NAME object)



------- Comment #1 from tbm at cyrius dot com  2007-11-06 15:52 -------
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */

void XdmcpUnwrap (unsigned char *input, unsigned char *output, int k)
{
  int i;
  unsigned char blocks[8][8];
  for (i = 0; i < 8; i++)
    blocks[k][i] = input[i];
  k = (k == 0) ? 1 : 0;
  for (i = 0; i < 8; i++)
    output[i] =  blocks[k][i];
}


-- 


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


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