* soft-fp/soft-fp.h (CMPtype): Define to "int" if undefined.

* soft-fp/eqdf2.c (__eqdf2): Use CMPtype instead of int 
as the return type.  Change type of "r" variable to CMPtype. 
* soft-fp/eqsf2.c (__eqsf2): Likewise. 
* soft-fp/eqtf2.c (__eqtf2): Likewise. 
* soft-fp/gedf2.c (__gedf2): Likewise. 
* soft-fp/gesf2.c (__gesf2): Likewise. 
* soft-fp/getf2.c (__getf2): Likewise. 
* soft-fp/ledf2.c (__ledf2): Likewise. 
* soft-fp/lesf2.c (__lesf2): Likewise. 
* soft-fp/letf2.c (__letf2): Likewise. 
* soft-fp/unorddf2 (__unorddf2): Likewise. 
* soft-fp/unordsf2 (__unordsf2): Likewise. 
* soft-fp/unordtf2 (__unordtf2): Likewise.
2007-06-14 Uros Bizjak <ubizjak@gmail.com>

	* soft-fp/soft-fp.h (CMPtype): Define to "int" if undefined.
	* soft-fp/eqdf2.c (__eqdf2): Use CMPtype instead of int
	as the return type.  Change type of "r" variable to CMPtype.
	* soft-fp/eqsf2.c (__eqsf2): Likewise.
	* soft-fp/eqtf2.c (__eqtf2): Likewise.
	* soft-fp/gedf2.c (__gedf2): Likewise.
	* soft-fp/gesf2.c (__gesf2): Likewise.
	* soft-fp/getf2.c (__getf2): Likewise.
	* soft-fp/ledf2.c (__ledf2): Likewise.
	* soft-fp/lesf2.c (__lesf2): Likewise.
	* soft-fp/letf2.c (__letf2): Likewise.
	* soft-fp/unorddf2 (__unorddf2): Likewise.
	* soft-fp/unordsf2 (__unordsf2): Likewise.
	* soft-fp/unordtf2 (__unordtf2): Likewise.
This commit is contained in:
Jakub Jelinek 2007-06-14 19:21:34 +00:00
parent 90cd2413df
commit ae8e81f596
14 changed files with 58 additions and 40 deletions

View File

@ -1,3 +1,20 @@
2007-06-14 Uros Bizjak <ubizjak@gmail.com>
* soft-fp/soft-fp.h (CMPtype): Define to "int" if undefined.
* soft-fp/eqdf2.c (__eqdf2): Use CMPtype instead of int
as the return type. Change type of "r" variable to CMPtype.
* soft-fp/eqsf2.c (__eqsf2): Likewise.
* soft-fp/eqtf2.c (__eqtf2): Likewise.
* soft-fp/gedf2.c (__gedf2): Likewise.
* soft-fp/gesf2.c (__gesf2): Likewise.
* soft-fp/getf2.c (__getf2): Likewise.
* soft-fp/ledf2.c (__ledf2): Likewise.
* soft-fp/lesf2.c (__lesf2): Likewise.
* soft-fp/letf2.c (__letf2): Likewise.
* soft-fp/unorddf2 (__unorddf2): Likewise.
* soft-fp/unordsf2 (__unordsf2): Likewise.
* soft-fp/unordtf2 (__unordtf2): Likewise.
2007-06-09 Ulrich Drepper <drepper@redhat.com> 2007-06-09 Ulrich Drepper <drepper@redhat.com>
* elf/do-lookup.h (do_lookup_x): Read r_nlist before r_list and * elf/do-lookup.h (do_lookup_x): Read r_nlist before r_list and

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 0 iff a == b, 1 otherwise Return 0 iff a == b, 1 otherwise
Copyright (C) 1997,1999,2006 Free Software Foundation, Inc. Copyright (C) 1997,1999,2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com) and Contributed by Richard Henderson (rth@cygnus.com) and
Jakub Jelinek (jj@ultra.linux.cz). Jakub Jelinek (jj@ultra.linux.cz).
@ -32,11 +32,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "double.h" #include "double.h"
int __eqdf2(DFtype a, DFtype b) CMPtype __eqdf2(DFtype a, DFtype b)
{ {
FP_DECL_EX; FP_DECL_EX;
FP_DECL_D(A); FP_DECL_D(B); FP_DECL_D(A); FP_DECL_D(B);
int r; CMPtype r;
FP_UNPACK_RAW_D(A, a); FP_UNPACK_RAW_D(A, a);
FP_UNPACK_RAW_D(B, b); FP_UNPACK_RAW_D(B, b);

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 0 iff a == b, 1 otherwise Return 0 iff a == b, 1 otherwise
Copyright (C) 1997,1999,2006 Free Software Foundation, Inc. Copyright (C) 1997,1999,2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com) and Contributed by Richard Henderson (rth@cygnus.com) and
Jakub Jelinek (jj@ultra.linux.cz). Jakub Jelinek (jj@ultra.linux.cz).
@ -32,11 +32,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "single.h" #include "single.h"
int __eqsf2(SFtype a, SFtype b) CMPtype __eqsf2(SFtype a, SFtype b)
{ {
FP_DECL_EX; FP_DECL_EX;
FP_DECL_S(A); FP_DECL_S(B); FP_DECL_S(A); FP_DECL_S(B);
int r; CMPtype r;
FP_UNPACK_RAW_S(A, a); FP_UNPACK_RAW_S(A, a);
FP_UNPACK_RAW_S(B, b); FP_UNPACK_RAW_S(B, b);

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 0 iff a == b, 1 otherwise Return 0 iff a == b, 1 otherwise
Copyright (C) 1997,1999,2006 Free Software Foundation, Inc. Copyright (C) 1997,1999,2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com) and Contributed by Richard Henderson (rth@cygnus.com) and
Jakub Jelinek (jj@ultra.linux.cz). Jakub Jelinek (jj@ultra.linux.cz).
@ -32,11 +32,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "quad.h" #include "quad.h"
int __eqtf2(TFtype a, TFtype b) CMPtype __eqtf2(TFtype a, TFtype b)
{ {
FP_DECL_EX; FP_DECL_EX;
FP_DECL_Q(A); FP_DECL_Q(B); FP_DECL_Q(A); FP_DECL_Q(B);
int r; CMPtype r;
FP_UNPACK_RAW_Q(A, a); FP_UNPACK_RAW_Q(A, a);
FP_UNPACK_RAW_Q(B, b); FP_UNPACK_RAW_Q(B, b);

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b
Copyright (C) 1997,1999,2006 Free Software Foundation, Inc. Copyright (C) 1997,1999,2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com) and Contributed by Richard Henderson (rth@cygnus.com) and
Jakub Jelinek (jj@ultra.linux.cz). Jakub Jelinek (jj@ultra.linux.cz).
@ -32,11 +32,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "double.h" #include "double.h"
int __gedf2(DFtype a, DFtype b) CMPtype __gedf2(DFtype a, DFtype b)
{ {
FP_DECL_EX; FP_DECL_EX;
FP_DECL_D(A); FP_DECL_D(B); FP_DECL_D(A); FP_DECL_D(B);
int r; CMPtype r;
FP_UNPACK_RAW_D(A, a); FP_UNPACK_RAW_D(A, a);
FP_UNPACK_RAW_D(B, b); FP_UNPACK_RAW_D(B, b);

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b
Copyright (C) 1997,1999,2006 Free Software Foundation, Inc. Copyright (C) 1997,1999,2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com) and Contributed by Richard Henderson (rth@cygnus.com) and
Jakub Jelinek (jj@ultra.linux.cz). Jakub Jelinek (jj@ultra.linux.cz).
@ -32,11 +32,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "single.h" #include "single.h"
int __gesf2(SFtype a, SFtype b) CMPtype __gesf2(SFtype a, SFtype b)
{ {
FP_DECL_EX; FP_DECL_EX;
FP_DECL_S(A); FP_DECL_S(B); FP_DECL_S(A); FP_DECL_S(B);
int r; CMPtype r;
FP_UNPACK_RAW_S(A, a); FP_UNPACK_RAW_S(A, a);
FP_UNPACK_RAW_S(B, b); FP_UNPACK_RAW_S(B, b);

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b
Copyright (C) 1997,1999,2006 Free Software Foundation, Inc. Copyright (C) 1997,1999,2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com) and Contributed by Richard Henderson (rth@cygnus.com) and
Jakub Jelinek (jj@ultra.linux.cz). Jakub Jelinek (jj@ultra.linux.cz).
@ -32,11 +32,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "quad.h" #include "quad.h"
int __getf2(TFtype a, TFtype b) CMPtype __getf2(TFtype a, TFtype b)
{ {
FP_DECL_EX; FP_DECL_EX;
FP_DECL_Q(A); FP_DECL_Q(B); FP_DECL_Q(A); FP_DECL_Q(B);
int r; CMPtype r;
FP_UNPACK_RAW_Q(A, a); FP_UNPACK_RAW_Q(A, a);
FP_UNPACK_RAW_Q(B, b); FP_UNPACK_RAW_Q(B, b);

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b
Copyright (C) 1997,1999,2006 Free Software Foundation, Inc. Copyright (C) 1997,1999,2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com) and Contributed by Richard Henderson (rth@cygnus.com) and
Jakub Jelinek (jj@ultra.linux.cz). Jakub Jelinek (jj@ultra.linux.cz).
@ -32,11 +32,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "double.h" #include "double.h"
int __ledf2(DFtype a, DFtype b) CMPtype __ledf2(DFtype a, DFtype b)
{ {
FP_DECL_EX; FP_DECL_EX;
FP_DECL_D(A); FP_DECL_D(B); FP_DECL_D(A); FP_DECL_D(B);
int r; CMPtype r;
FP_UNPACK_RAW_D(A, a); FP_UNPACK_RAW_D(A, a);
FP_UNPACK_RAW_D(B, b); FP_UNPACK_RAW_D(B, b);

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b
Copyright (C) 1997,1999,2006 Free Software Foundation, Inc. Copyright (C) 1997,1999,2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com) and Contributed by Richard Henderson (rth@cygnus.com) and
Jakub Jelinek (jj@ultra.linux.cz). Jakub Jelinek (jj@ultra.linux.cz).
@ -32,11 +32,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "single.h" #include "single.h"
int __lesf2(SFtype a, SFtype b) CMPtype __lesf2(SFtype a, SFtype b)
{ {
FP_DECL_EX; FP_DECL_EX;
FP_DECL_S(A); FP_DECL_S(B); FP_DECL_S(A); FP_DECL_S(B);
int r; CMPtype r;
FP_UNPACK_RAW_S(A, a); FP_UNPACK_RAW_S(A, a);
FP_UNPACK_RAW_S(B, b); FP_UNPACK_RAW_S(B, b);

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b
Copyright (C) 1997,1999,2006 Free Software Foundation, Inc. Copyright (C) 1997,1999,2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com) and Contributed by Richard Henderson (rth@cygnus.com) and
Jakub Jelinek (jj@ultra.linux.cz). Jakub Jelinek (jj@ultra.linux.cz).
@ -32,11 +32,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "quad.h" #include "quad.h"
int __letf2(TFtype a, TFtype b) CMPtype __letf2(TFtype a, TFtype b)
{ {
FP_DECL_EX; FP_DECL_EX;
FP_DECL_Q(A); FP_DECL_Q(B); FP_DECL_Q(A); FP_DECL_Q(B);
int r; CMPtype r;
FP_UNPACK_RAW_Q(A, a); FP_UNPACK_RAW_Q(A, a);
FP_UNPACK_RAW_Q(B, b); FP_UNPACK_RAW_Q(B, b);

View File

@ -1,5 +1,5 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Copyright (C) 1997,1998,1999,2000,2002,2003,2005,2006 Copyright (C) 1997,1998,1999,2000,2002,2003,2005,2006,2007
Free Software Foundation, Inc. Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com), Contributed by Richard Henderson (rth@cygnus.com),
@ -189,6 +189,10 @@ typedef unsigned int UHWtype __attribute__((mode(HI)));
typedef USItype UHWtype; typedef USItype UHWtype;
#endif #endif
#ifndef CMPtype
#define CMPtype int
#endif
#define SI_BITS (__CHAR_BIT__ * (int)sizeof(SItype)) #define SI_BITS (__CHAR_BIT__ * (int)sizeof(SItype))
#define DI_BITS (__CHAR_BIT__ * (int)sizeof(DItype)) #define DI_BITS (__CHAR_BIT__ * (int)sizeof(DItype))

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 1 iff a or b is a NaN, 0 otherwise. Return 1 iff a or b is a NaN, 0 otherwise.
Copyright (C) 2006 Free Software Foundation, Inc. Copyright (C) 2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Joseph Myers (joseph@codesourcery.com). Contributed by Joseph Myers (joseph@codesourcery.com).
@ -31,11 +31,10 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "double.h" #include "double.h"
int CMPtype __unorddf2(DFtype a, DFtype b)
__unorddf2(DFtype a, DFtype b)
{ {
FP_DECL_D(A); FP_DECL_D(B); FP_DECL_D(A); FP_DECL_D(B);
int r; CMPtype r;
FP_UNPACK_RAW_D(A, a); FP_UNPACK_RAW_D(A, a);
FP_UNPACK_RAW_D(B, b); FP_UNPACK_RAW_D(B, b);

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 1 iff a or b is a NaN, 0 otherwise. Return 1 iff a or b is a NaN, 0 otherwise.
Copyright (C) 2006 Free Software Foundation, Inc. Copyright (C) 2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Joseph Myers (joseph@codesourcery.com). Contributed by Joseph Myers (joseph@codesourcery.com).
@ -31,12 +31,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "single.h" #include "single.h"
int CMPtype __unordsf2(SFtype a, SFtype b)
__unordsf2(SFtype a, SFtype b)
{ {
FP_DECL_S(A); FP_DECL_S(A);
FP_DECL_S(B); FP_DECL_S(B);
int r; CMPtype r;
FP_UNPACK_RAW_S(A, a); FP_UNPACK_RAW_S(A, a);
FP_UNPACK_RAW_S(B, b); FP_UNPACK_RAW_S(B, b);

View File

@ -1,6 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Return 1 iff a or b is a NaN, 0 otherwise. Return 1 iff a or b is a NaN, 0 otherwise.
Copyright (C) 2006 Free Software Foundation, Inc. Copyright (C) 2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Joseph Myers (joseph@codesourcery.com). Contributed by Joseph Myers (joseph@codesourcery.com).
@ -31,12 +31,11 @@
#include "soft-fp.h" #include "soft-fp.h"
#include "quad.h" #include "quad.h"
int CMPtype __unordtf2(TFtype a, TFtype b)
__unordtf2(TFtype a, TFtype b)
{ {
FP_DECL_Q(A); FP_DECL_Q(A);
FP_DECL_Q(B); FP_DECL_Q(B);
int r; CMPtype r;
FP_UNPACK_RAW_Q(A, a); FP_UNPACK_RAW_Q(A, a);
FP_UNPACK_RAW_Q(B, b); FP_UNPACK_RAW_Q(B, b);