(REGNO_REG_CLASS): Don't call abort; it will cause a compilation error

as written and isn't done elsewhere.

From-SVN: r4473
This commit is contained in:
Richard Kenner 1993-05-15 11:45:31 -04:00
parent 3f9f062d45
commit d6cca343c5

View File

@ -639,8 +639,7 @@ enum reg_class {
reg number REGNO. This could be a conditional expression
or could index an array. */
#define REGNO_REG_CLASS(REGNO) \
((REGNO) >= FIRST_PSEUDO_REGISTER ? abort() : regno_reg_class[REGNO])
#define REGNO_REG_CLASS(REGNO) (regno_reg_class[REGNO])
#define S_REGNO_P(REGNO) (((REGNO) - S0_REGNUM) < (unsigned) 8)
#define A_REGNO_P(REGNO) (((REGNO) - A0_REGNUM) < (unsigned) 8)