Fixed an off-by-one error.
--HG-- extra : convert_revision : 498fef18cf339cabc2c00e4758bc8a0da857daca
This commit is contained in:
@@ -82,7 +82,7 @@ namespace SparcISA
|
||||
IntReg * regView[NumFrames];
|
||||
|
||||
static const int RegGlobalOffset = 0;
|
||||
static const int FrameOffset = MaxGL * RegsPerFrame;
|
||||
static const int FrameOffset = (MaxGL + 1) * RegsPerFrame;
|
||||
int offset[NumFrames];
|
||||
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user