diff options
author | Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2015-08-16 16:37:18 +0000 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2015-08-16 16:37:18 +0000 |
commit | c541d5217e6571a0a5d8bf56db831c1ad63756ff (patch) | |
tree | e7f1fbe7cd34b2aaa62a306bea0cee890892570a /gcc/fortran/mathbuiltins.def | |
parent | 9f801fd79aca0090598da27d04506ddc65103443 (diff) | |
download | gcc-c541d5217e6571a0a5d8bf56db831c1ad63756ff.zip gcc-c541d5217e6571a0a5d8bf56db831c1ad63756ff.tar.gz gcc-c541d5217e6571a0a5d8bf56db831c1ad63756ff.tar.bz2 |
trans-intrinsic.c (conv_intrinsic_ieee_is_negative): Use type generic BUILT_IN_SIGNBIT.
* trans-intrinsic.c (conv_intrinsic_ieee_is_negative): Use type
generic BUILT_IN_SIGNBIT.
(conv_intrinsic_ieee_copy_sign): Likewise.
* f95-lang.c (gfc_init_builtin_functions): Add BUILT_IN_ISINF,
BUILT_IN_ISINF_SIGN, BUILT_IN_SIGNBIT, BUILT_IN_ISLESS,
BUILT_IN_ISLESSGREATER, BUILT_IN_ISGREATER. Remove non-type generic
variants of BUILT_IN_SIGNBIT.
* mathbuiltins.def: Remove SIGNBIT.
From-SVN: r226924
Diffstat (limited to 'gcc/fortran/mathbuiltins.def')
-rw-r--r-- | gcc/fortran/mathbuiltins.def | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/fortran/mathbuiltins.def b/gcc/fortran/mathbuiltins.def index aee04b8..5c86f60 100644 --- a/gcc/fortran/mathbuiltins.def +++ b/gcc/fortran/mathbuiltins.def @@ -72,5 +72,4 @@ OTHER_BUILTIN (REMAINDER, "remainder", 2, true) OTHER_BUILTIN (RINT, "rint", 1, true) OTHER_BUILTIN (ROUND, "round", 1, true) OTHER_BUILTIN (SCALBN, "scalbn", scalbn, true) -OTHER_BUILTIN (SIGNBIT, "signbit", iround, true) OTHER_BUILTIN (TRUNC, "trunc", 1, true) |