view gcc/testsuite/gcc.dg/tree-ssa/20040430-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* 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"} } */