view gcc/testsuite/g++.dg/opt/pr23454.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 rtl-optimization/23454 */
/* { dg-do compile } */
/* { dg-options "-O2" } */

void foo ();
int a, b;
char c;
long long d, e;

static inline int
bar (const long long s, const long long t)
{
  return ((s < t) ? -1 : s > t ? 1 : 0);
}

int fn ();
int f;

void
baz (int x)
{
  long long g = fn ();
  if (f)
    {
      b++;
      return;
    }
  if (g == 0)
    a++;
  if (x)
    foo ();
  if (!c)
    c = 1;
  else if (g != 0)
    {
      if (bar (g, d) < 0)
	d = g;
      if (bar (g, e) > 0)
	e = g;
    }
}