OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.dg/] [opt/] [unroll2.C] - Diff between revs 301 and 338

Only display areas with differences | Details | Blame | View Log

Rev 301 Rev 338
// PR tree-opt/28937
// PR tree-opt/28937
// Complete unroll forgot to update the statement usage
// Complete unroll forgot to update the statement usage
// which meant we ICEd in add_virtual_operand.
// which meant we ICEd in add_virtual_operand.
// { dg-do compile }
// { dg-do compile }
// { dg-options "-O2" }
// { dg-options "-O2" }
class SHA256
class SHA256
{
{
  unsigned m_digest;
  unsigned m_digest;
  unsigned long long m_count;
  unsigned long long m_count;
  unsigned char _buffer[64];
  unsigned char _buffer[64];
  static void Transform (unsigned * data);
  static void Transform (unsigned * data);
  void WriteByteBlock (unsigned t);
  void WriteByteBlock (unsigned t);
};
};
void SHA256::WriteByteBlock (unsigned t)
void SHA256::WriteByteBlock (unsigned t)
{
{
  unsigned data32[16];
  unsigned data32[16];
  Transform (data32);
  Transform (data32);
  unsigned long long lenInBits = m_count;
  unsigned long long lenInBits = m_count;
  if (t != (64 - 8))
  if (t != (64 - 8))
    return;
    return;
  for (int i = 0; i < 2; i++)
  for (int i = 0; i < 2; i++)
          _buffer[t++] = (unsigned char)lenInBits;
          _buffer[t++] = (unsigned char)lenInBits;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.