]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - soft-fp/floatditf.c
soft-fp: Condition sfp-machine.h include path on __KERNEL__.
[thirdparty/glibc.git] / soft-fp / floatditf.c
index 760183f84d29fab18f1ce242b6982d41565227b9..e2b5ea11d2348bb4d17daeef5a8999a285e94345 100644 (file)
@@ -1,6 +1,6 @@
 /* Software floating-point emulation.
    Convert a 64bit signed integer to IEEE quad
-   Copyright (C) 1997-2013 Free Software Foundation, Inc.
+   Copyright (C) 1997-2015 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
-__floatditf(DItype i)
+__floatditf (DItype i)
 {
-  FP_DECL_Q(A);
+  FP_DECL_Q (A);
   TFtype a;
 
-  FP_FROM_INT_Q(A, i, DI_BITS, UDItype);
-  FP_PACK_RAW_Q(a, A);
+  FP_FROM_INT_Q (A, i, DI_BITS, UDItype);
+  FP_PACK_RAW_Q (a, A);
 
   return a;
 }