diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-15 22:36:03 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-15 22:36:03 -0400 |
commit | e787a350fd7a5eb87dcbc810c74d93ee8915d640 (patch) | |
tree | d6f1948277b754bc8daf9591c1e0c4f1e09f4d0e | |
parent | daefd78b4ccc28ce52e5c8a7abebe5b6fc903cc3 (diff) | |
download | gcc-e787a350fd7a5eb87dcbc810c74d93ee8915d640.zip gcc-e787a350fd7a5eb87dcbc810c74d93ee8915d640.tar.gz gcc-e787a350fd7a5eb87dcbc810c74d93ee8915d640.tar.bz2 |
(CHECK_FLOAT_VALUE): Fix misspelling of OVERFLOW parameter.
From-SVN: r9698
-rw-r--r-- | gcc/config/tahoe/tahoe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/tahoe/tahoe.h b/gcc/config/tahoe/tahoe.h index 71cd301..d6dd08f 100644 --- a/gcc/config/tahoe/tahoe.h +++ b/gcc/config/tahoe/tahoe.h @@ -133,7 +133,7 @@ extern int target_flags; /* this section is borrowed from the vax version since the */ /* formats are the same in both of the architectures */ -#define CHECK_FLOAT_VALUE(MODE, D, OVEFLOW) \ +#define CHECK_FLOAT_VALUE(MODE, D, OVERFLOW) \ if (OVERFLOW) \ (D) = 1.7014117331926443e+38; \ else if ((MODE) == SFmode) \ |