aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/20040430-1.c
blob: 4bc1f85ae94d563a2830ae85919521472db98df8 (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
/* PR middle-end/14470.  Similar to
   gcc.c-torture/execute/20040313-1.c, but with a compile time test to
   make sure the second if() is removed.  */
/* Update: We now remove both ifs.  Whee. */

/* { dg-do run } */
/* { dg-options "-O2 -fdump-tree-optimized" } */


extern void abort(void);

int main()
{
  int t[1025] = { 1024 }, d;

  d = 0;
  d = t[d]++;
  if (t[0] != 1025)
    abort();
  if (d != 1024)
    abort();
  return 0;
}

/* { dg-final { scan-tree-dump-times "if " 0 "optimized"} } */
/* { dg-final { cleanup-tree-dump "optimized" } } */