From 13592517181829b642b65865eab0cd0eaa1ab1ca Mon Sep 17 00:00:00 2001 From: law Date: Sun, 17 Oct 1999 06:47:27 +0000 Subject: * 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 --- gcc/reload.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gcc/reload.h') 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). */ -- cgit v1.2.1