diff options
author | YamaArashi <shadow962@live.com> | 2016-04-27 01:38:58 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-04-27 01:38:58 -0700 |
commit | 0fd2209ea0d16df6b320fbac167dc20d89110cb2 (patch) | |
tree | b492be075eb53a98cf7b7653882e89e0a93f2b23 /gcc/real.c | |
parent | 9dc75fe3b4be91d6066c8e870eacec954117cc08 (diff) |
remove dead dwarf-2 code
Diffstat (limited to 'gcc/real.c')
-rwxr-xr-x | gcc/real.c | 17 |
1 files changed, 0 insertions, 17 deletions
@@ -207,7 +207,6 @@ static void emovz (uint16_t *, uint16_t *); static void einan (uint16_t *); static int eiisnan (uint16_t *); static int eiisneg (uint16_t *); -static int eiisinf (uint16_t *); static int ecmpm (uint16_t *, uint16_t *); static void eshdn1 (uint16_t *); static void eshup1 (uint16_t *); @@ -1426,22 +1425,6 @@ eiisneg (x) return x[0] != 0; } - -/* Return nonzero if exploded e-type X is infinite. */ - -static int -eiisinf (x) - uint16_t x[]; -{ - - if (eiisnan (x)) - return (0); - if ((x[E] & 0x7fff) == 0x7fff) - return (1); - return (0); -} - - /* Compare significands of numbers in internal exploded e-type format. Guard words are included in the comparison. |