X86: Fix x87 stack register indexing.

This commit is contained in:
Gabe Black 2009-07-16 09:26:38 -07:00
parent 6262b31515
commit 3f9b0cc5ca

View file

@ -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);
}
};