diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-17 06:47:27 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-17 06:47:27 +0000 |
commit | 13592517181829b642b65865eab0cd0eaa1ab1ca (patch) | |
tree | b6e06d2e64bd73926b7e2b0f2b093c565527426d /gcc/reload.h | |
parent | c45dd27b211dd0a92b2d31335baae280acbfac93 (diff) | |
download | gcc-13592517181829b642b65865eab0cd0eaa1ab1ca.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30051 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reload.h')
-rw-r--r-- | gcc/reload.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/reload.h b/gcc/reload.h index 5371362b1c0..5159c4763a6 100644 --- a/gcc/reload.h +++ b/gcc/reload.h @@ -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). */ |