Commit 6750b31e by Janis Johnson Committed by Janis Johnson

decfloat.h (DEC*_DEN): Define using the correct builtins.

gcc:
	* ginclude/decfloat.h (DEC*_DEN): Define using the correct builtins.

testsuite:
	* gcc.dg/dfp/decfloat-constants.c: Remove 'dg-do compile', fix typo.

From-SVN: r117115
parent 72478f32
2006-09-21 Janis Johnson <janis187@us.ibm.com>
* ginclude/decfloat.h (DEC*_DEN): Define using the correct builtins.
2006-09-21 Roger Sayle <roger@eyesopen.com>
PR debug/29132
......
......@@ -86,9 +86,9 @@ Boston, MA 02110-1301, USA. */
#undef DEC32_DEN
#undef DEC64_DEN
#undef DEC128_DEN
#define DEC32_DEN __DEC32_MIN__
#define DEC64_DEN __DEC64_MIN__
#define DEC128_DEN __DEC128_MIN__
#define DEC32_DEN __DEC32_DEN__
#define DEC64_DEN __DEC64_DEN__
#define DEC128_DEN __DEC128_DEN__
/* The floating-point expression evaluation method.
-1 indeterminate
......
2006-09-21 Janis Johnson <janis187@us.ibm.com>
* gcc.dg/dfp/decfloat-constants.c: Remove 'dg-do compile', fix typo.
2006-09-20 Danny Smith <dannysmith@users.sourceforge.net>
PR target/27650
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */
/* N1150 4: Characteristics of decimal floating types <decfloat.h>.
......@@ -35,7 +34,7 @@ int main ()
if (DEC128_EPSILON != 1E-33DL) abort();
if (DEC32_MIN != 1E-95DF) abort();
if (DEC32_MIN != 1E-383DD) abort();
if (DEC64_MIN != 1E-383DD) abort();
if (DEC128_MIN != 1E-6143DL) abort();
if (DEC32_DEN != 0.000001E-95DF) abort();
......
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