view gcc/testsuite/g++.dg/eh/080514-1.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

// This used to fail on s390 due to cse removing an insn with a
// REG_EH_REGION without deleting the EH edge.
// { dg-do compile }
// { dg-options "-O2 -fnon-call-exceptions" }

void
run (int m, double d)
{
  int stack[m];
  int *sp = stack;

  if (d == 1.0)
    *(sp++) = (0);
  else if (d < 1.0)
    *(sp++) = (-1);
}