summaryrefslogtreecommitdiff
path: root/soft-fp/fixunstfdi.c
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp/fixunstfdi.c')
-rw-r--r--soft-fp/fixunstfdi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/fixunstfdi.c b/soft-fp/fixunstfdi.c
index d4a0b7d707..b2355a2ae9 100644
--- a/soft-fp/fixunstfdi.c
+++ b/soft-fp/fixunstfdi.c
@@ -32,15 +32,15 @@
#include "quad.h"
UDItype
-__fixunstfdi(TFtype a)
+__fixunstfdi (TFtype a)
{
FP_DECL_EX;
- FP_DECL_Q(A);
+ FP_DECL_Q (A);
UDItype r;
FP_INIT_EXCEPTIONS;
- FP_UNPACK_RAW_Q(A, a);
- FP_TO_INT_Q(r, A, DI_BITS, 0);
+ FP_UNPACK_RAW_Q (A, a);
+ FP_TO_INT_Q (r, A, DI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
return r;