view gcc/testsuite/gcc.dg/tree-ssa/ssa-fre-21.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-fre1" } */

struct f {
  float a;
  float b;
  float c;
  float d;
};

struct f a;

void h(float, float, float, float);

void g(void)
{
  float a1 = a.a, b = a.b, c = a.c, d = a.d;
  a.a = a1;
  a.b = b;
  a.c = c;
  a.d = d;
  h(a1, b, c, d);
}

/* { dg-final { scan-tree-dump-not "a\\\.? = " "fre1" } } */