aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/unroll2.C
blob: 82a1e7f56d8da32edf861f794fa276293bbc67ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// PR tree-opt/28937
// Complete unroll forgot to update the statement usage
// which meant we ICEd in add_virtual_operand.

// { dg-do compile }
// { dg-options "-O2" }


class SHA256
{
  unsigned m_digest;
  unsigned long long m_count;
  unsigned char _buffer[64];
  static void Transform (unsigned * data);
  void WriteByteBlock (unsigned t);
};
void SHA256::WriteByteBlock (unsigned t)
{
  unsigned data32[16];
  Transform (data32);
  unsigned long long lenInBits = m_count;
  if (t != (64 - 8))
    return;
  for (int i = 0; i < 2; i++)
          _buffer[t++] = (unsigned char)lenInBits;
}