diff options
author | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-11 22:50:51 +0000 |
---|---|---|
committer | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-11 22:50:51 +0000 |
commit | dfc5737e4b9019dfe0e9ec86f7b7b76a8acd07ae (patch) | |
tree | 48c44f2516b4b389008f8c140e5b6e51d1a122c6 /gcc/ginclude | |
parent | 024e445d2db38a6be3ca98818b88308ed6f1a699 (diff) | |
download | gcc-dfc5737e4b9019dfe0e9ec86f7b7b76a8acd07ae.tar.gz |
gcc/
* ginclude/float.h (DEC_EVAL_METHOD): Correct the macro name.
gcc/testsuite
* gcc.dg/dfp/dec-eval-method-2.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@140301 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ginclude')
-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 23ce8f42c91..5d9f918e838 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__ */ |