mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
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:
parent
2ad7c51c41
commit
3bbf66f4e1
@ -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))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user