diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-04 23:21:28 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-04 23:21:28 +0000 |
commit | 92c43e3c28dbea747e0234ef4815971cb703be9b (patch) | |
tree | 6a9e27455fe10ee403d06e599a3b61ab33cb8756 /gcc/real.h | |
parent | 38b13a9b08d5ed6aaf64fe826f1e395570ab4ff8 (diff) | |
download | gcc-92c43e3c28dbea747e0234ef4815971cb703be9b.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56820 138bc75d-0d04-0410-961f-82ee72b054a4
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)); |