]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - soft-fp/floatsitf.c
soft-fp: Fix comment formatting.
[thirdparty/glibc.git] / soft-fp / floatsitf.c
index d5f107f8c58f883e498d2489a6e42f12e670c5dd..d92e4bdd2553b2d1b227793506a69a0f63e8a30a 100644 (file)
@@ -1,6 +1,6 @@
 /* Software floating-point emulation.
    Convert a 32bit signed integer to IEEE quad
-   Copyright (C) 1997-2013 Free Software Foundation, Inc.
+   Copyright (C) 1997-2014 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Richard Henderson (rth@cygnus.com) and
                  Jakub Jelinek (jj@ultra.linux.cz).
 #include "quad.h"
 
 TFtype
-__floatsitf(SItype i)
+__floatsitf (SItype i)
 {
-  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_FROM_INT_Q (A, i, SI_BITS, USItype);
+  FP_PACK_RAW_Q (a, A);
 
   return a;
 }