PR middle-end/25568
[official-gcc.git] / libgfortran / runtime / fpu.c
blobf81a3b05a421e83f6439409365692779a624c9f1
1 #include "libgfortran.h"
3 /* We include the platform-dependent code. */
4 #include "fpu-target.h"
6 /* Function called by the front-end to tell us
7 when a FPE should be raised. */
8 extern void set_fpe (int);
9 export_proto(set_fpe);
11 void
12 set_fpe (int exceptions)
14 options.fpe = exceptions;
15 set_fpu ();