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

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

extern void f(char *const *);
void g (char **o)
{
  static const char *const multilib_exclusions_raw[] = { 0 };
  const char *const *q = multilib_exclusions_raw;

  f (o);
  while (*q++)
    f (o);
}

/* The last DCE pass is able to remove the load from
    multilib_exclusions_raw.  */

/* { dg-final { scan-tree-dump-not "multilib_exclusions_raw" "optimized" } } */