Commit 7ecb6f5b by Janis Johnson Committed by Janis Johnson

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
parent e49a540c
2008-09-11 Janis Johnson <janis187@us.ibm.com>
* ginclude/float.h (DEC_EVAL_METHOD): Correct the macro name.
2008-09-11 Richard Guenther <rguenther@suse.de>
* tree-ssa-uncprop.c (associate_equivalences_with_edges): Avoid
......
......@@ -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__ */
......
2008-09-11 Janis Johnson <janis187@us.ibm.com>
* gcc.dg/dfp/dec-eval-method-2.c: New test.
2008-09-11 Joseph Myers <joseph@codesourcery.com>
* lib/compat.exp, gcc.dg/compat/struct-layout-1.exp,
......
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -D__STDC_WANT_DEC_FP__" } */
/* N1107 4: Characteristics of decimal floating types <float.h>.
C99 5.2.4.2.2a[2] (New).
Verify that DEC_EVAL_METHOD is defined by float.h.
DEC_EVAL_METHOD in <float.h>. */
#ifdef DEC_EVAL_METHOD
#error DEC_EVAL_METHOD is defined before float.h is included
#endif
#include <float.h>
#ifndef DEC_EVAL_METHOD
#error DEC_EVAL_METHOD is not defined after float.h is included
#endif
int i;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment