diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-03-31 20:41:33 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-03-31 20:41:33 +0000 |
commit | 83b30dfa90284460c7d10c4068725cae9dc59a90 (patch) | |
tree | 08ebb8df336130432053ca1aa5beb8ab85e9d2d5 /gcc/config/vax/vax.c | |
parent | 4207d390b08893b08f60e6fbb3dfa099ed2fe653 (diff) | |
download | gcc-83b30dfa90284460c7d10c4068725cae9dc59a90.tar.gz |
(check_float_value): New function.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3959 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/vax/vax.c')
-rw-r--r-- | gcc/config/vax/vax.c | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/gcc/config/vax/vax.c b/gcc/config/vax/vax.c index bd637461558..d5d9c34bb4c 100644 --- a/gcc/config/vax/vax.c +++ b/gcc/config/vax/vax.c @@ -577,6 +577,66 @@ vax_rtx_cost (x) } return c; } + +/* Check a `double' value for validity for a particular machine mode. */ + +static char *float_strings[] = +{ + "1.70141173319264430e+38", /* 2^127 (2^24 - 1) / 2^24 */ + "-1.70141173319264430e+38", + "2.93873587705571877e-39", /* 2^-128 */ + "-2.93873587705571877e-39" +}; + +static REAL_VALUE_TYPE float_values[4]; + +static int inited_float_values = 0; + + +void +check_float_value (mode, d) + enum machine_mode mode; + REAL_VALUE_TYPE *d; +{ + + if (inited_float_values == 0) + { + int i; + for (i = 0; i < 4; i++) + { + float_values[i] = REAL_VALUE_ATOF (float_strings[i], DFmode); + } + inited_float_values = 1; + } + + if ((mode) == SFmode) + { + REAL_VALUE_TYPE r; + bcopy (d, &r, sizeof (REAL_VALUE_TYPE)); + if (REAL_VALUES_LESS (float_values[0], r)) + { + error ("magnitude of constant too large for `float'"); + bcopy (&float_values[0], d, sizeof (REAL_VALUE_TYPE)); + } + else if (REAL_VALUES_LESS (r, float_values[1])) + { + error ("magnitude of constant too large for `float'"); + bcopy (&float_values[1], d, sizeof (REAL_VALUE_TYPE)); + } + else if (REAL_VALUES_LESS (dconst0, r) + && REAL_VALUES_LESS (r, float_values[2])) + { + warning ("`float' constant truncated to zero"); + bcopy (&dconst0, d, sizeof (REAL_VALUE_TYPE)); + } + else if (REAL_VALUES_LESS (r, dconst0) + && REAL_VALUES_LESS (float_values[3], r)) + { + warning ("`float' constant truncated to zero"); + bcopy (&dconst0, d, sizeof (REAL_VALUE_TYPE)); + } + } +} /* Linked list of all externals that are to be emitted when optimizing for the global pointer if they haven't been declared by the end of |