From 8ec450a4de30b9518238684fe4216f4b45322e32 Mon Sep 17 00:00:00 2001 From: Bernd Schmidt Date: Sun, 17 Oct 1999 06:47:27 +0000 Subject: 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 --- 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 5371362..5159c47 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.1