summaryrefslogtreecommitdiff
path: root/soft-fp/floatdidf.c
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp/floatdidf.c')
-rw-r--r--soft-fp/floatdidf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/floatdidf.c b/soft-fp/floatdidf.c
index 4413e68de4..fc8719abd7 100644
--- a/soft-fp/floatdidf.c
+++ b/soft-fp/floatdidf.c
@@ -32,15 +32,15 @@
#include "double.h"
DFtype
-__floatdidf(DItype i)
+__floatdidf (DItype i)
{
FP_DECL_EX;
- FP_DECL_D(A);
+ FP_DECL_D (A);
DFtype a;
FP_INIT_ROUNDMODE;
- FP_FROM_INT_D(A, i, DI_BITS, UDItype);
- FP_PACK_RAW_D(a, A);
+ FP_FROM_INT_D (A, i, DI_BITS, UDItype);
+ FP_PACK_RAW_D (a, A);
FP_HANDLE_EXCEPTIONS;
return a;