diff options
Diffstat (limited to 'libgcc/soft-fp/extendxftf2.c')
-rw-r--r-- | libgcc/soft-fp/extendxftf2.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/libgcc/soft-fp/extendxftf2.c b/libgcc/soft-fp/extendxftf2.c index af29a2ae9cc..684052d8744 100644 --- a/libgcc/soft-fp/extendxftf2.c +++ b/libgcc/soft-fp/extendxftf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a converted to IEEE quad - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). @@ -24,29 +24,29 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, 51 Franklin Street, Fifth Floor, Boston, - MA 02110-1301, USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ #include "soft-fp.h" #include "extended.h" #include "quad.h" -TFtype __extendxftf2(XFtype a) +TFtype +__extendxftf2 (XFtype a) { FP_DECL_EX; - FP_DECL_E(A); - FP_DECL_Q(R); + FP_DECL_E (A); + FP_DECL_Q (R); TFtype r; FP_INIT_ROUNDMODE; - FP_UNPACK_RAW_E(A, a); + FP_UNPACK_RAW_E (A, a); #if (2 * _FP_W_TYPE_SIZE) < _FP_FRACBITS_Q - FP_EXTEND(Q,E,4,4,R,A); + FP_EXTEND (Q, E, 4, 4, R, A); #else - FP_EXTEND(Q,E,2,2,R,A); + FP_EXTEND (Q, E, 2, 2, R, A); #endif - FP_PACK_RAW_Q(r, R); + FP_PACK_RAW_Q (r, R); FP_HANDLE_EXCEPTIONS; return r; |