OSDN Git Service

* config/i386/mmx.md (mmx_nand<mode>3): Rename to mmx_andnot<mode>3.
[pf3gnuchains/gcc-fork.git] / gcc / config / spu / float_unsdisf.c
1 /* Copyright (C) 2008 Free Software Foundation, Inc.
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
5    Software Foundation; either version 2 of the License, or (at your option)
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   
13    You should have received a copy of the GNU General Public License
14    along with this file; see the file COPYING.  If not, write to the Free
15    Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
16    02110-1301, USA.  */
17
18 /* As a special exception, if you link this library with files compiled with
19    GCC to produce an executable, this does not cause the resulting executable
20    to be covered by the GNU General Public License.  The exception does not
21    however invalidate any other reasons why the executable file might be covered
22    by the GNU General Public License. */
23
24 float __floatundisf (unsigned long long x)
25 {
26   /* The SPU back-end now generates inline code for this conversion.
27      This file is solely used to provide the __floatundisf function
28      for objects generated with prior versions of GCC.  */
29   return x;
30 }