Commit 3aa4cad7 by Richard Henderson Committed by Richard Henderson

builtins.def (inf, inff, infl): Mark const.

        * builtins.def (inf, inff, infl): Mark const.
        (huge_val, huge_valf, huge_vall): Likewise.
        (BUILT_IN_GETEXP, BUILT_IN_GETMAN): Remove.

From-SVN: r56926
parent 36eea25f
2002-09-07 Richard Henderson <rth@redhat.com>
* builtins.def (inf, inff, infl): Mark const.
(huge_val, huge_valf, huge_vall): Likewise.
(BUILT_IN_GETEXP, BUILT_IN_GETMAN): Remove.
* real.c (ereal_inf): Clear E before use.
2002-09-07 Kazu Hirata <kazu@cs.umass.edu>
......
......@@ -404,31 +404,28 @@ DEF_LIB_BUILTIN(BUILT_IN_LOGL,
DEF_GCC_BUILTIN(BUILT_IN_INF,
"__builtin_inf",
BT_FN_DOUBLE,
ATTR_PURE_NOTHROW_LIST)
ATTR_CONST_NOTHROW_LIST)
DEF_GCC_BUILTIN(BUILT_IN_INFF,
"__builtin_inff",
BT_FN_FLOAT,
ATTR_PURE_NOTHROW_LIST)
ATTR_CONST_NOTHROW_LIST)
DEF_GCC_BUILTIN(BUILT_IN_INFL,
"__builtin_infl",
BT_FN_LONG_DOUBLE,
ATTR_PURE_NOTHROW_LIST)
ATTR_CONST_NOTHROW_LIST)
DEF_GCC_BUILTIN(BUILT_IN_HUGE_VAL,
"__builtin_huge_val",
BT_FN_DOUBLE,
ATTR_PURE_NOTHROW_LIST)
ATTR_CONST_NOTHROW_LIST)
DEF_GCC_BUILTIN(BUILT_IN_HUGE_VALF,
"__builtin_huge_valf",
BT_FN_FLOAT,
ATTR_PURE_NOTHROW_LIST)
ATTR_CONST_NOTHROW_LIST)
DEF_GCC_BUILTIN(BUILT_IN_HUGE_VALL,
"__builtin_huge_vall",
BT_FN_LONG_DOUBLE,
ATTR_PURE_NOTHROW_LIST)
DEF_UNUSED_BUILTIN(BUILT_IN_GETEXP)
DEF_UNUSED_BUILTIN(BUILT_IN_GETMAN)
ATTR_CONST_NOTHROW_LIST)
DEF_GCC_BUILTIN(BUILT_IN_SAVEREGS,
"__builtin_saveregs",
......
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