view gcc/testsuite/gcc.dg/pr42084.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do run } */
/* { dg-options "-O1 -fno-delete-null-pointer-checks" } */
extern void abort (void);
int g = 0;
static int __attribute__((noinline)) f (long long a, long long b)
{
  int cmp;
  cmp = a > b;
  if (&g == 0)
    cmp-=2;
  else
    cmp++;
  return cmp;
}

int main (void)
{
  int ret = f (2, 1);
  if (ret != 2)
    abort ();
  return 0;
}