Dead
[official-gcc.git] / gomp-20050608-branch / gcc / config / h8300 / fixunssfsi.c
blob46eb3c92aa55920a1f4a6ae5ff6ac09760e887c1
1 /* More subroutines needed by GCC output code on some machines. */
2 /* Compile this one with gcc. */
3 /* Copyright (C) 1989, 1992, 2001, 2002, 2003, 2004
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 In addition to the permissions in the GNU General Public License, the
14 Free Software Foundation gives you unlimited permission to link the
15 compiled version of this file into combinations with other programs,
16 and to distribute those combinations without any restriction coming
17 from the use of this file. (The General Public License restrictions
18 do apply in other respects; for example, they cover modification of
19 the file, and distribution when not linked into a combine
20 executable.)
22 GCC is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
27 You should have received a copy of the GNU General Public License
28 along with GCC; see the file COPYING. If not, write to
29 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
30 Boston, MA 02110-1301, USA. */
32 /* The libgcc2.c implementation gets confused by our type setup and creates
33 a directly recursive call, so we do our own implementation. For
34 the H8/300, that's in lib1funcs.asm, for H8/300H and H8S, it's here. */
36 #ifndef __H8300__
37 long __fixunssfsi (float a);
39 long
40 __fixunssfsi (float a)
42 if (a >= (float) 32768L)
43 return (long) (a - 32768L) + 32768L;
44 return (long) a;
46 #endif