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

/* PR tree-optimization/68671 */
/* { dg-do run } */
/* { dg-options " -O2 -fno-tree-dce" } */
/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } } */

volatile int a = -1;
volatile int b;

static inline int
fn1 (signed char p1, int p2)
{
  return (p1 < 0) || (p1 > (1 >> p2)) ? 0 : (p1 << 1);
}

int
main ()
{
  signed char c = a;
  b = fn1 (c, 1);
  c = ((128 | c) < 0 ? 1 : 0);
  if (c != 1)
    __builtin_abort ();
  return 0;
}