diff options
author | Richard Henderson <rth@redhat.com> | 2002-09-04 16:21:28 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-09-04 16:21:28 -0700 |
commit | ab5e26156fb28eb59e0a259ccb0ab49485a1b94c (patch) | |
tree | 6a9e27455fe10ee403d06e599a3b61ab33cb8756 /gcc/real.h | |
parent | 9beb7d208292359f61d839fefa95153590df4200 (diff) | |
download | gcc-ab5e26156fb28eb59e0a259ccb0ab49485a1b94c.tar.gz |
builtin-types.def (BT_FN_FLOAT): New.
* builtin-types.def (BT_FN_FLOAT): New.
(BT_FN_DOUBLE, BT_FN_LONG_DOUBLE): New.
* builtins.def (BUILT_IN_INF, BUILT_IN_INFF, BUILT_IN_INFL,
BUILT_IN_HUGE_VAL, BUILT_IN_HUGE_VALF, BUILT_IN_HUGE_VALL): New.
* builtins.c (fold_builtin_inf): New.
(fold_builtin): Call it.
* real.c (ereal_inf): New.
* real.h: Declare it.
* doc/extend.texi: Document new builtins.
From-SVN: r56820
Diffstat (limited to 'gcc/real.h')
-rw-r--r-- | gcc/real.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/real.h b/gcc/real.h index cf5fdf21aeb..f4265826ce9 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -292,6 +292,7 @@ extern int target_isinf PARAMS ((REAL_VALUE_TYPE)); extern int target_negative PARAMS ((REAL_VALUE_TYPE)); extern void debug_real PARAMS ((REAL_VALUE_TYPE)); extern REAL_VALUE_TYPE ereal_atof PARAMS ((const char *, enum machine_mode)); +extern REAL_VALUE_TYPE ereal_inf PARAMS ((enum machine_mode)); /* In tree.c: wrap up a REAL_VALUE_TYPE in a tree node. */ extern tree build_real PARAMS ((tree, REAL_VALUE_TYPE)); |