view gcc/testsuite/gcc.dg/tree-ssa/pr27799.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 link } */
/* { dg-options "-O2" } */

struct X { double m; int x; };
struct Y { int y; short d; };
struct YY { int y; short d; char c; };

extern void link_error (void);

int foo(struct X *x,  struct Y *y)
{
  x->x =  0;
  y->y =  1;
  if (x->x != 0)
    link_error ();
}

int foo_no(struct X *x,  struct YY *y)
{
  x->x =  0;
  y->y =  1;
  if (x->x != 0)
    link_error ();
}

int main() {}