Commit 39ea5704 by Kazu Hirata Committed by Kazu Hirata

h8300.h (REGNO_REG_CLASS): Replace a literal register number with an appropriate macro.

	* config/h8300/h8300.h (REGNO_REG_CLASS): Replace a literal
	register number with an appropriate macro.

From-SVN: r49859
parent 1c417030
2002-02-19 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.h (REGNO_REG_CLASS): Replace a literal
register number with an appropriate macro.
2002-02-19 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* doc/rtl.texi (Constants): Close @code tag.
......
......@@ -417,7 +417,7 @@ enum reg_class {
reg number REGNO. This could be a conditional expression
or could index an array. */
#define REGNO_REG_CLASS(REGNO) (REGNO != 8 ? GENERAL_REGS : MAC_REGS)
#define REGNO_REG_CLASS(REGNO) (REGNO != MAC_REG ? GENERAL_REGS : MAC_REGS)
/* The class value for index registers, and the one for base regs. */
......
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