Commit cca8fb0e by Kazu Hirata Committed by Kazu Hirata

defaults.h (LOCAL_REGNO): Give the default definition.

	* defaults.h (LOCAL_REGNO): Give the default definition.
	* flow.c (LOCAL_REGNO): Remove.
	* reload1.c (LOCAL_REGNO): Likewise.

From-SVN: r74456
parent e64738b3
2003-12-08 Kazu Hirata <kazu@cs.umass.edu>
* defaults.h (LOCAL_REGNO): Give the default definition.
* flow.c (LOCAL_REGNO): Remove.
* reload1.c (LOCAL_REGNO): Likewise.
2003-12-08 Geoffrey Keating <geoffk@apple.com>
PR target/11848
......
......@@ -685,4 +685,8 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE!
fprintf ((FILE), "%s", reg_names[REGNO (RTX)])
#endif
#ifndef LOCAL_REGNO
#define LOCAL_REGNO(REGNO) 0
#endif
#endif /* ! GCC_DEFAULTS_H */
......@@ -159,9 +159,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#define HAVE_sibcall_epilogue 0
#endif
#ifndef LOCAL_REGNO
#define LOCAL_REGNO(REGNO) 0
#endif
#ifndef EPILOGUE_USES
#define EPILOGUE_USES(REGNO) 0
#endif
......
......@@ -77,10 +77,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
reload needs, spilling, assigning reload registers to use for
fixing up each insn, and generating the new insns to copy values
into the reload registers. */
#ifndef LOCAL_REGNO
#define LOCAL_REGNO(REGNO) 0
#endif
/* During reload_as_needed, element N contains a REG rtx for the hard reg
into which reg N has been reloaded (perhaps for a previous insn). */
......
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