From 51ca9e29af1a71b7dc175b78ee2d3564f9416fab Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 16 Oct 2013 01:22:21 +0000 Subject: soft-fp: fix horizontal whitespace. --- soft-fp/addsf3.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'soft-fp/addsf3.c') diff --git a/soft-fp/addsf3.c b/soft-fp/addsf3.c index abd8dfa0da..ac571bad06 100644 --- a/soft-fp/addsf3.c +++ b/soft-fp/addsf3.c @@ -32,19 +32,19 @@ #include "single.h" SFtype -__addsf3(SFtype a, SFtype b) +__addsf3 (SFtype a, SFtype b) { FP_DECL_EX; - FP_DECL_S(A); - FP_DECL_S(B); - FP_DECL_S(R); + FP_DECL_S (A); + FP_DECL_S (B); + FP_DECL_S (R); SFtype r; FP_INIT_ROUNDMODE; - FP_UNPACK_SEMIRAW_S(A, a); - FP_UNPACK_SEMIRAW_S(B, b); - FP_ADD_S(R, A, B); - FP_PACK_SEMIRAW_S(r, R); + FP_UNPACK_SEMIRAW_S (A, a); + FP_UNPACK_SEMIRAW_S (B, b); + FP_ADD_S (R, A, B); + FP_PACK_SEMIRAW_S (r, R); FP_HANDLE_EXCEPTIONS; return r; -- cgit v1.2.3