view gcc/testsuite/gcc.dg/tree-ssa/20030918-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

/* The compiler was failing to adjust pointer dereferences into array
   references after propagating &equot[0] into p.  */

/* { dg-do compile } */
/* { dg-options "-O -ftree-dominator-opts" } */

static unsigned short equot[(6 +3)];
int
foo (num)
     unsigned short num[];
{
  unsigned short *p = &equot[0];
  *p++ = num[0];
  *p++ = num[1];
}