view gcc/testsuite/gcc.dg/pr39226.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

/* PR target/39226 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-options "-O2 -mtune=cell -mminimal-toc" { target { powerpc*-*-* && lp64 } } } */

#if (__SIZEOF_INT__ == 2)	
struct A
{
  char *a;
  unsigned int b : 1;
  unsigned int c : 15;
};
#else
struct A
{
  char *a;
  unsigned int b : 1;
  unsigned int c : 31;
};
#endif

struct B
{
  struct A *d;
};

void
foo (struct B *x, unsigned long y)
{
  if (x->d[y].c)
    return;
  if (x->d[y].b)
    x->d[y].a = 0;
}