X86: Fix x87 stack register indexing.
This commit is contained in:
@@ -166,7 +166,7 @@ namespace X86ISA
|
||||
static inline FloatRegIndex
|
||||
FLOATREG_STACK(int index, int top)
|
||||
{
|
||||
return (FloatRegIndex)(NUM_FLOATREGS + ((top + index + 8) % 8));
|
||||
return FLOATREG_FPR((top + index + 8) % 8);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user