view gcc/testsuite/gcc.c-torture/compile/pr47157.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

/* PR rtl-optimization/47157 */

struct S { unsigned a; unsigned b; } c = { 1, 0 };
unsigned long int e;
void bar (int);
int baz (void);

static int
foo (int x, short y)
{
  return ((x ^ y) & ((x ^ (x ^ y) & ~__INT_MAX__) - y ^ y)) < 0 ? x : x - y;
}

void
test (void)
{
  bar (foo (baz () != (c.a | c.b), -1L));
  for (e = 0; e; e = 1)
    ;
}