diff options
Diffstat (limited to 'libgcc/soft-fp/floatsitf.c')
-rw-r--r-- | libgcc/soft-fp/floatsitf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libgcc/soft-fp/floatsitf.c b/libgcc/soft-fp/floatsitf.c index 6e24b9ea634..d7c3078e4ba 100644 --- a/libgcc/soft-fp/floatsitf.c +++ b/libgcc/soft-fp/floatsitf.c @@ -28,18 +28,18 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#define FP_NO_EXCEPTIONS #include "soft-fp.h" #include "quad.h" -TFtype __floatsitf(SItype i) +TFtype +__floatsitf (SItype i) { - FP_DECL_EX; - FP_DECL_Q(A); + FP_DECL_Q (A); TFtype a; - FP_FROM_INT_Q(A, i, SI_BITS, USItype); - FP_PACK_RAW_Q(a, A); - FP_HANDLE_EXCEPTIONS; + FP_FROM_INT_Q (A, i, SI_BITS, USItype); + FP_PACK_RAW_Q (a, A); return a; } |