diff options
Diffstat (limited to 'gcc/config/ia64')
-rw-r--r-- | gcc/config/ia64/quadlib.c | 78 | ||||
-rw-r--r-- | gcc/config/ia64/t-hpux | 10 | ||||
-rw-r--r-- | gcc/config/ia64/t-ia64 | 7 |
3 files changed, 0 insertions, 95 deletions
diff --git a/gcc/config/ia64/quadlib.c b/gcc/config/ia64/quadlib.c deleted file mode 100644 index f9ee30b..0000000 --- a/gcc/config/ia64/quadlib.c +++ /dev/null @@ -1,78 +0,0 @@ -/* Subroutines for long double support. - Copyright (C) 2000, 2001, 2002, 2009 Free Software Foundation, Inc. - -This file is part of GCC. - -GCC is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3, or (at your option) -any later version. - -GCC is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -Under Section 7 of GPL version 3, you are granted additional -permissions described in the GCC Runtime Library Exception, version -3.1, as published by the Free Software Foundation. - -You should have received a copy of the GNU General Public License and -a copy of the GCC Runtime Library Exception along with this program; -see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -<http://www.gnu.org/licenses/>. */ - -extern int _U_Qfcmp (long double a, long double b, int); - -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 -_U_Qfeq (long double a, long double b) -{ - return (_U_Qfcmp (a, b, 4) != 0); -} - -int -_U_Qfne (long double a, long double b) -{ - return (_U_Qfcmp (a, b, 4) == 0); -} - -int -_U_Qfgt (long double a, long double b) -{ - return (_U_Qfcmp (a, b, 17) != 0); -} - -int -_U_Qfge (long double a, long double b) -{ - return (_U_Qfcmp (a, b, 21) != 0); -} - -int -_U_Qflt (long double a, long double b) -{ - return (_U_Qfcmp (a, b, 9) != 0); -} - -int -_U_Qfle (long double a, long double b) -{ - return (_U_Qfcmp (a, b, 13) != 0); -} - -int -_U_Qfcomp (long double a, long double b) -{ - if (_U_Qfcmp (a, b, 4) == 0) - return 0; - - return (_U_Qfcmp (a, b, 22) != 0 ? 1 : -1); -} diff --git a/gcc/config/ia64/t-hpux b/gcc/config/ia64/t-hpux index 23691f3..a1b681a 100644 --- a/gcc/config/ia64/t-hpux +++ b/gcc/config/ia64/t-hpux @@ -19,20 +19,10 @@ # We need multilib support for HPUX's ILP32 & LP64 modes. -LIBGCC = stmp-multilib -INSTALL_LIBGCC = install-multilib - MULTILIB_OPTIONS = milp32/mlp64 MULTILIB_DIRNAMES = hpux32 hpux64 MULTILIB_MATCHES = -# Support routines for HP-UX 128 bit floats. - -LIB2FUNCS_EXTRA=quadlib.c $(srcdir)/config/floatunsitf.c - -quadlib.c: $(srcdir)/config/ia64/quadlib.c - cat $(srcdir)/config/ia64/quadlib.c > quadlib.c - # We do not want to include the EH stuff that linux uses, we want to use # the HP-UX libunwind library. diff --git a/gcc/config/ia64/t-ia64 b/gcc/config/ia64/t-ia64 index 8a54d46..398aba1 100644 --- a/gcc/config/ia64/t-ia64 +++ b/gcc/config/ia64/t-ia64 @@ -18,13 +18,6 @@ # along with GCC; see the file COPYING3. If not see # <http://www.gnu.org/licenses/>. -# ??? Hack to get -P option used when compiling lib1funcs.asm, because Intel -# assembler does not accept # line number as a comment. -# ??? This breaks C++ pragma interface/implementation, which is used in the -# C++ part of libgcc2, hence it had to be disabled. Must find some other way -# to support the Intel assembler. -#LIBGCC2_DEBUG_CFLAGS = -g1 -P - ia64-c.o: $(srcdir)/config/ia64/ia64-c.c $(CONFIG_H) $(SYSTEM_H) \ coretypes.h $(TM_H) $(TREE_H) $(CPPLIB_H) $(C_COMMON_H) $(C_PRAGMA_H) $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ |