aboutsummaryrefslogtreecommitdiffstats
path: root/test/gourdinl/fp_init.c
blob: 1d8359943b3b2b9d1722a3e159c0889a6abdfb20 (plain)
1
2
3
4
5
6
7
int main (float *x) {
  double a = 1.0;
  float b = 1.0f;
  printf("%f", a);
  *x = b;
  return b;
}