From 344080e610264212214a5a3d1b562de6fbd03dea Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sat, 10 Jul 1993 19:25:58 +0000 Subject: [PATCH] (REGSET_ELT_TYPE): Make unsigned to avoid signed arithmetic overflow. From-SVN: r4900 --- gcc/basic-block.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/basic-block.h b/gcc/basic-block.h index fb0d10eed13..b1bc002000f 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -26,7 +26,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ that the initial part of a regset that contains information on the hard registers is the same format as a HARD_REG_SET. */ -#define REGSET_ELT_TYPE HOST_WIDE_INT +#define REGSET_ELT_TYPE unsigned HOST_WIDE_INT /* Define the type for a pointer to a set with a bit for each (hard or pseudo) register. */ -- 2.30.2