Commit 8ec450a4 by Bernd Schmidt Committed by Jeff Law

reload.h (struct reload): Add new fields "mode" and "nregs".

        * reload.h (struct reload): Add new fields "mode" and "nregs".
        * reload1.c: Change all occurrences of reload_mode and reload_nregs
        to reference the "mode" and "nregs" field within struct reload.

From-SVN: r30051
parent 356edbd7
Sun Oct 17 00:44:17 1999 Bernd Schmidt <bernds@cygnus.co.uk>
* reload.h (struct reload): Add new fields "mode" and "nregs".
* reload1.c: Change all occurrences of reload_mode and reload_nregs
to reference the "mode" and "nregs" field within struct reload.
Sat Oct 16 21:50:28 1999 Jeffrey A Law (law@cygnus.com)
* haifa-sched.c (true_dependency_cache): New.
......
......@@ -99,6 +99,12 @@ struct reload
/* The mode this operand should have when reloaded, on output. */
enum machine_mode outmode;
/* The mode of the reload register. */
enum mode;
/* the largest number of registers this reload will require. */
int nregs;
/* Positive amount to increment or decrement by if
reload_in is a PRE_DEC, PRE_INC, POST_DEC, POST_INC.
Ignored otherwise (don't assume it is zero). */
......
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