sfp-machine.h (e5451c8f8330e03ad3cfa16048b4daf961af434f) | sfp-machine.h (6a0abce4c4cce0890e2c930b960b9a05c8c6e5da) |
---|---|
1/* Machine-dependent software floating-point definitions. | 1/* SPDX-License-Identifier: GPL-2.0+ 2 * 3 * Machine-dependent software floating-point definitions. |
2 SuperH kernel version. 3 Copyright (C) 1997,1998,1999 Free Software Foundation, Inc. 4 This file is part of the GNU C Library. 5 Contributed by Richard Henderson (rth@cygnus.com), 6 Jakub Jelinek (jj@ultra.linux.cz), 7 David S. Miller (davem@redhat.com) and 8 Peter Maydell (pmaydell@chiark.greenend.org.uk). | 4 SuperH kernel version. 5 Copyright (C) 1997,1998,1999 Free Software Foundation, Inc. 6 This file is part of the GNU C Library. 7 Contributed by Richard Henderson (rth@cygnus.com), 8 Jakub Jelinek (jj@ultra.linux.cz), 9 David S. Miller (davem@redhat.com) and 10 Peter Maydell (pmaydell@chiark.greenend.org.uk). |
11*/ |
|
9 | 12 |
10 The GNU C Library is free software; you can redistribute it and/or 11 modify it under the terms of the GNU Library General Public License as 12 published by the Free Software Foundation; either version 2 of the 13 License, or (at your option) any later version. 14 15 The GNU C Library is distributed in the hope that it will be useful, 16 but WITHOUT ANY WARRANTY; without even the implied warranty of 17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 Library General Public License for more details. 19 20 You should have received a copy of the GNU Library General Public 21 License along with the GNU C Library; see the file COPYING.LIB. If 22 not, write to the Free Software Foundation, Inc., 23 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 24 | |
25#ifndef _SFP_MACHINE_H 26#define _SFP_MACHINE_H 27 28#define _FP_W_TYPE_SIZE 32 29#define _FP_W_TYPE unsigned long 30#define _FP_WS_TYPE signed long 31#define _FP_I_TYPE long 32 --- 52 unchanged lines hidden --- | 13#ifndef _SFP_MACHINE_H 14#define _SFP_MACHINE_H 15 16#define _FP_W_TYPE_SIZE 32 17#define _FP_W_TYPE unsigned long 18#define _FP_WS_TYPE signed long 19#define _FP_I_TYPE long 20 --- 52 unchanged lines hidden --- |