aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/sra-17.c
blob: f1c74274b30243569dd33f409c95d1e7a4c067ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do run { target { aarch64*-*-* alpha*-*-* arm*-*-* hppa*-*-* powerpc*-*-* s390*-*-* } } } */
/* { dg-options "-O2 -fdump-tree-esra --param sra-max-scalarization-size-Ospeed=32" } */
/* { dg-additional-options "-mcpu=ev4" { target alpha*-*-* } } */
/* { dg-additional-options "-mno-vsx" { target { powerpc*-*-* && ilp32 } } } */

extern void abort (void);

int
main (int argc, char **argv)
{
  long a[4] = { 7, 19, 11, 255 };
  int tot = 0;
  for (int i = 0; i < 4; i++)
    tot = (tot*256) + a[i];
  if (tot == 0x07130bff)
    return 0;
  abort ();
}

/* { dg-final { scan-tree-dump-times "Removing load: a = \\\*.?L.?C.?.?.?0;" 1 "esra" { xfail hppa*64*-*-* } } } */
/* { dg-final { scan-tree-dump-times "SR\[.$\]\[0-9_\]+ = \\\*.?L.?C.?.?.?0\\\[" 4 "esra" { xfail hppa*64*-*-* } } } */