view gcc/testsuite/c-c++-common/pr84982.c @ 138:fc828634a951

merge
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 08 Nov 2018 14:17:14 +0900
parents 84e7813d76e9
children
line wrap: on
line source

/* PR tree-optimization/84982 */
/* { dg-do run } */
/* { dg-options "-O2" } */

#ifndef __cplusplus
#define bool _Bool
#define true 1
#define false 0
#endif

struct S { bool a, b, c, d; };

__attribute__((noipa)) void
bar (bool *x)
{
  if (x[0] || !x[1] || !x[2] || x[3])
    __builtin_abort ();
}

__attribute__((noipa)) void
foo (struct S *x)
{
  bool a[4];
  a[0] = !x->a;
  a[1] = !x->b;
  a[2] = x->c;
  a[3] = !x->d;
  bar (a);
} 

int
main ()
{
  struct S s;
  s.a = true; s.b = false; s.c = true; s.d = true;
  foo (&s);
  return 0;
}