diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-15 18:51:19 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-15 18:51:19 -0400 |
commit | 98e34a948b5f7aaf3b9d5736ec956dc460972478 (patch) | |
tree | 57761e39d53e85269e544a32f4714dd46a4a1d0a /gcc | |
parent | 3cae95aff8229534ac1e2c91301fa40ccf17c1c8 (diff) | |
download | gcc-98e34a948b5f7aaf3b9d5736ec956dc460972478.zip gcc-98e34a948b5f7aaf3b9d5736ec956dc460972478.tar.gz gcc-98e34a948b5f7aaf3b9d5736ec956dc460972478.tar.bz2 |
(CHECK_FLOAT_VALUE): Fix misspelled use of parameter.
From-SVN: r9692
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/fx80/fx80.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/fx80/fx80.h b/gcc/config/fx80/fx80.h index 588b646..c589616 100644 --- a/gcc/config/fx80/fx80.h +++ b/gcc/config/fx80/fx80.h @@ -900,7 +900,7 @@ extern enum reg_class regno_reg_class[]; else if (((D) > 0) && ((D) < 1.1754943508222873e-38)) \ (OVERFLOW) = 1, (D) = 0.0; \ else if (((d) < 0) && ((d) > -1.1754943508222873e-38)) \ - (OVEFLOW) = 1, (D) = 0.0; \ + (OVERFLOW) = 1, (D) = 0.0; \ } /* Tell final.c how to eliminate redundant test instructions. */ |