diff options
Diffstat (limited to 'soft-fp/divdf3.c')
-rw-r--r-- | soft-fp/divdf3.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/soft-fp/divdf3.c b/soft-fp/divdf3.c index 4e7d28f917..d357bf0222 100644 --- a/soft-fp/divdf3.c +++ b/soft-fp/divdf3.c @@ -32,19 +32,19 @@ #include "double.h" DFtype -__divdf3(DFtype a, DFtype b) +__divdf3 (DFtype a, DFtype b) { FP_DECL_EX; - FP_DECL_D(A); - FP_DECL_D(B); - FP_DECL_D(R); + FP_DECL_D (A); + FP_DECL_D (B); + FP_DECL_D (R); DFtype r; FP_INIT_ROUNDMODE; - FP_UNPACK_D(A, a); - FP_UNPACK_D(B, b); - FP_DIV_D(R, A, B); - FP_PACK_D(r, R); + FP_UNPACK_D (A, a); + FP_UNPACK_D (B, b); + FP_DIV_D (R, A, B); + FP_PACK_D (r, R); FP_HANDLE_EXCEPTIONS; return r; |