Commit 1a7e1470 by Steve Ellcey Committed by Steve Ellcey

quadlib.c (_U_Qfcmp): Make extern.

	* config/ia64/quadlib.c (_U_Qfcmp): Make extern.
	(_U_Qfcnvfxt_quad_to_sgl): Remove declaration.
	(_U_Qfeq, _U_Qfne, _U_Qfgt, _U_Qfge, U_Qflt, U_Qfle, _U_Qfcomp):
	Add declarations.
	(_U_Qfneg): Remove.

From-SVN: r57109
parent d56c04ce
2002-09-13 Steve Ellcey <sje@cup.hp.com>
* config/ia64/quadlib.c (_U_Qfcmp): Make extern.
(_U_Qfcnvfxt_quad_to_sgl): Remove declaration.
(_U_Qfeq, _U_Qfne, _U_Qfgt, _U_Qfge, U_Qflt, U_Qfle, _U_Qfcomp):
Add declarations.
(_U_Qfneg): Remove.
2002-09-13 Dhananjay Deshpande <dhananjayd@kpit.com> 2002-09-13 Dhananjay Deshpande <dhananjayd@kpit.com>
* config/h8300/h8300.h (EIGHTBIT_CONSTANT_ADDRESS_P): Add support * config/h8300/h8300.h (EIGHTBIT_CONSTANT_ADDRESS_P): Add support
......
/* Subroutines for long double support. /* Subroutines for long double support.
Copyright (C) 2000, 2001 Free Software Foundation, Inc. Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of GNU CC. This file is part of GNU CC.
...@@ -27,8 +27,15 @@ along with GNU CC; see the file COPYING. If not, write to ...@@ -27,8 +27,15 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330, the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */ Boston, MA 02111-1307, USA. */
int _U_Qfcmp (long double a, long double b, int); extern int _U_Qfcmp (long double a, long double b, int);
long _U_Qfcnvfxt_quad_to_sgl (long double);
int _U_Qfeq (long double, long double);
int _U_Qfne (long double, long double);
int _U_Qfgt (long double, long double);
int _U_Qfge (long double, long double);
int _U_Qflt (long double, long double);
int _U_Qfle (long double, long double);
int _U_Qfcomp (long double, long double);
int int
_U_Qfeq (long double a, long double b) _U_Qfeq (long double a, long double b)
...@@ -74,9 +81,3 @@ _U_Qfcomp (long double a, long double b) ...@@ -74,9 +81,3 @@ _U_Qfcomp (long double a, long double b)
return (_U_Qfcmp (a, b, 22) != 0 ? 1 : -1); return (_U_Qfcmp (a, b, 22) != 0 ? 1 : -1);
} }
long double
_U_Qfneg (long double a)
{
return (0.0L - a);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment