aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/regalloc/invalid_register_allocation.c
blob: 93da30ebde905d07046be5a36d11b5e40132791a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* simplified version of c-strtod.i */

extern double getdouble(void);
extern void intptr(void);

double bidule (void)
{
  double r;
  r = getdouble();
  intptr();
  return r;
}