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

// 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);
}