From 2a1d64a7a738e7603e1ddd0e55e004c15aa749d5 Mon Sep 17 00:00:00 2001 From: Olivier Hainque Date: Sat, 18 Feb 2006 16:21:06 +0000 Subject: [PATCH] re PR ada/13408 (acats numeric tests cxg* fail on pa/hpux) PR ada/13408 * pa.h (WIDEST_HARDWARE_FP_SIZE): Define. From-SVN: r111243 --- gcc/ChangeLog | 3 +++ gcc/config/pa/pa.h | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f8e0bba8e71e..0caf3e410273 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,6 @@ + PR ada/13408 + * pa.h (WIDEST_HARDWARE_FP_SIZE): Define. + 2006-02-13 Kaveh R. Ghazi Backport: diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 7727cb5f85cb..23b8a7655975 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -461,6 +461,11 @@ typedef struct machine_function GTY(()) #define UNITS_PER_WORD (TARGET_64BIT ? 8 : 4) #define MIN_UNITS_PER_WORD 4 +/* The widest floating point format supported by the hardware. Note that + setting this influences some Ada floating point type sizes, currently + required for GNAT to operate properly. */ +#define WIDEST_HARDWARE_FP_SIZE 64 + /* Allocation boundary (in *bits*) for storing arguments in argument list. */ #define PARM_BOUNDARY BITS_PER_WORD -- 2.47.2