the name of %fsr (as the comment in SparcV9RegClassInfo.h used to suggest)
you would walk off the end of the FloatCCRegName array.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13070
91177308-0d34-0410-b5e6-
96231b3b80d8
return FloatRegNames[reg];
}
-
static const char * const IntCCRegNames[] = {
"xcc", "icc", "ccr"
};
};
const char * const SparcV9FloatCCRegClass::getRegName(unsigned reg) const {
- assert (reg < 5);
+ assert (reg < 4);
return FloatCCRegNames[reg];
}