Commit d6cca343 by Richard Kenner

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

as written and isn't done elsewhere.

From-SVN: r4473
parent 3f9f062d
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment