summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr69461.c
blob: 24bdcc4da11f8a27298648a3b1f884c78c47771a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-mlra" } */

typedef struct {
  double real;
  double imag;
} Py_complex;
Py_complex a;
Py_complex fn1();
Py_complex fn2() { return fn1(); }
void fn3() {
  _setjmp();
  a = fn2();
}