diff options
author | Chris Smith <cks@gnu.org> | 1997-07-24 03:51:04 +0000 |
---|---|---|
committer | Chris Smith <cks@gnu.org> | 1997-07-24 03:51:04 +0000 |
commit | 067aea74e22271b432c7aff753eb1278b3ae29b4 (patch) | |
tree | 19a654924259805d549a1963ea67b079ff0b282f | |
parent | e3482774d8e55a2ecb8506f5e91445db59c16ee9 (diff) | |
download | gcc-067aea74e22271b432c7aff753eb1278b3ae29b4.zip gcc-067aea74e22271b432c7aff753eb1278b3ae29b4.tar.gz gcc-067aea74e22271b432c7aff753eb1278b3ae29b4.tar.bz2 |
Fix capitalization of OVERFLOW in CHECK_FLOAT_VALUE definition
From-SVN: r14523
-rw-r--r-- | gcc/config/convex/convex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/convex/convex.h b/gcc/config/convex/convex.h index 0d598ed..41f1bac 100644 --- a/gcc/config/convex/convex.h +++ b/gcc/config/convex/convex.h @@ -1175,7 +1175,7 @@ extern double atof(); /* Check a `double' value for validity for a particular machine mode. */ #define CHECK_FLOAT_VALUE(MODE, D, OVERFLOW) \ - overflow = check_float_value (MODE, &D, OVERFLOW) + OVERFLOW = check_float_value (MODE, &D, OVERFLOW) /* Tell final.c how to eliminate redundant test instructions. */ |