hppa: Define MAX_FIXED_MODE_SIZE

Replace default define.  We support TImode when TARGET_64BIT is true.

2023-11-22  John David Anglin  <danglin@gcc.gnu.org>

gcc/ChangeLog:

	PR target/112592
	* config/pa/pa.h (MAX_FIXED_MODE_SIZE): Define.
This commit is contained in:
John David Anglin
2023-11-22 20:06:22 +00:00
parent a89224f819
commit 6f59f959e7

View File

@@ -1310,3 +1310,7 @@ do { \
/* Output default function prologue for hpux. */
#define TARGET_ASM_FUNCTION_PROLOGUE pa_output_function_prologue
/* An integer expression for the size in bits of the largest integer machine
mode that should actually be used. We allow pairs of registers. */
#define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (TARGET_64BIT ? TImode : DImode)