diff options
author | Janis Johnson <janis187@us.ibm.com> | 2008-09-11 22:50:51 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2008-09-11 22:50:51 +0000 |
commit | 7ecb6f5bd0216ff59fbb8947f99edcc8099d22bc (patch) | |
tree | 48c44f2516b4b389008f8c140e5b6e51d1a122c6 /gcc/ginclude/float.h | |
parent | e49a540c1272d1658df36ab0c5db721ba63d3764 (diff) | |
download | gcc-7ecb6f5bd0216ff59fbb8947f99edcc8099d22bc.zip gcc-7ecb6f5bd0216ff59fbb8947f99edcc8099d22bc.tar.gz gcc-7ecb6f5bd0216ff59fbb8947f99edcc8099d22bc.tar.bz2 |
float.h (DEC_EVAL_METHOD): Correct the macro name.
gcc/
* ginclude/float.h (DEC_EVAL_METHOD): Correct the macro name.
gcc/testsuite
* gcc.dg/dfp/dec-eval-method-2.c: New test.
From-SVN: r140301
Diffstat (limited to 'gcc/ginclude/float.h')
-rw-r--r-- | gcc/ginclude/float.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ginclude/float.h b/gcc/ginclude/float.h index 23ce8f4..5d9f918 100644 --- a/gcc/ginclude/float.h +++ b/gcc/ginclude/float.h @@ -233,8 +233,8 @@ Boston, MA 02110-1301, USA. */ 2 evaluate all operations and constants to the range and precision of the _Decimal128 type. */ -#undef DECFLT_EVAL_METHOD -#define DECFLT_EVAL_METHOD __DECFLT_EVAL_METHOD__ +#undef DEC_EVAL_METHOD +#define DEC_EVAL_METHOD __DEC_EVAL_METHOD__ #endif /* __STDC_WANT_DEC_FP__ */ |