Fixed stupid mistake. Fortunately the value is only used for initialisation

and is then always overwritten by liveness analysis.  Still...


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1168
This commit is contained in:
Nicholas Nethercote 2002-10-03 08:57:01 +00:00
parent 2ad7c51c41
commit 3bbf66f4e1

View File

@ -601,7 +601,7 @@ typedef UChar FlagSet;
typedef UInt RRegSet;
#define ALL_RREGS_DEAD 0 /* 0000...00b */
#define ALL_RREGS_LIVE (1 << (VG_MAX_REALREGS-1)) /* 0011...11b */
#define ALL_RREGS_LIVE ((1 << VG_MAX_REALREGS)-1) /* 0011...11b */
#define UNIT_RREGSET(rank) (1 << (rank))
#define IS_RREG_LIVE(rank,rregs_live) (rregs_live & UNIT_RREGSET(rank))