]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgcc/config/spu/float_unsdisf.c
Update copyright years.
[thirdparty/gcc.git] / libgcc / config / spu / float_unsdisf.c
CommitLineData
818ab71a 1/* Copyright (C) 2008-2016 Free Software Foundation, Inc.
e0bddf10
UW
2
3 This file is free software; you can redistribute it and/or modify it under
4 the terms of the GNU General Public License as published by the Free
748086b7 5 Software Foundation; either version 3 of the License, or (at your option)
e0bddf10
UW
6 any later version.
7
8 This file is distributed in the hope that it will be useful, but WITHOUT
9 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 for more details.
12
748086b7
JJ
13 Under Section 7 of GPL version 3, you are granted additional
14 permissions described in the GCC Runtime Library Exception, version
15 3.1, as published by the Free Software Foundation.
e0bddf10 16
748086b7
JJ
17 You should have received a copy of the GNU General Public License and
18 a copy of the GCC Runtime Library Exception along with this program;
19 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
20 <http://www.gnu.org/licenses/>. */
e0bddf10 21
96e4a79f
BE
22/* Prototype. */
23float __floatundisf (unsigned long long x);
24
e0bddf10
UW
25float __floatundisf (unsigned long long x)
26{
27 /* The SPU back-end now generates inline code for this conversion.
28 This file is solely used to provide the __floatundisf function
29 for objects generated with prior versions of GCC. */
30 return x;
31}