view gcc/testsuite/gcc.dg/tree-ssa/20041008-1.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do run } */ 
/* { dg-options "-O2 -std=gnu89" } */

struct A {
    int x;
    int y;
};

baz (struct A *a)
{
  a->x = 3;
  a->y = 2;
}

foo (int i)
{
  struct A a;

  /* Make sure we can't scalarize 'a'.  */
  baz (&a);

  if (i > 10)
    a.x = i;
  else
    a.x = i;

  /* Copy propagation should prove that this predicate is always false.  */
  if (a.x != i)
    link_error ();

  return a.x;
}

main ()
{
  foo (30);
  return 0;
}