diff options
author | Janis Johnson <janis187@us.ibm.com> | 2006-09-21 17:34:47 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2006-09-21 17:34:47 +0000 |
commit | 6750b31e4ab6e354e50d48f386a75c8b54928db1 (patch) | |
tree | e36860fd49641efb68740bf79adc8d6af1a69c65 /gcc/ginclude | |
parent | 72478f32e0a2f4d7aa23ba4983f8cb24f766d7b4 (diff) | |
download | gcc-6750b31e4ab6e354e50d48f386a75c8b54928db1.zip gcc-6750b31e4ab6e354e50d48f386a75c8b54928db1.tar.gz gcc-6750b31e4ab6e354e50d48f386a75c8b54928db1.tar.bz2 |
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
Diffstat (limited to 'gcc/ginclude')
-rw-r--r-- | gcc/ginclude/decfloat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ginclude/decfloat.h b/gcc/ginclude/decfloat.h index fbf1346..03e0a7b 100644 --- a/gcc/ginclude/decfloat.h +++ b/gcc/ginclude/decfloat.h @@ -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 |