diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-11-05 01:56:33 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-11-05 01:56:33 +0000 |
commit | bb09b94c66b1c70a6d88affbc2efdcd79a18b198 (patch) | |
tree | 213e094132ce0b0b703713c24baf19ab1993f9ef /gcc/rtl.h | |
parent | c3e22fe4adce1dd85a7beaca4866cd8ee265b024 (diff) | |
download | gcc-bb09b94c66b1c70a6d88affbc2efdcd79a18b198.tar.gz |
* rtl.def (CODE_LABEL): Use separate fields for LABEL_NUSES
and LABEL_REFS fields.
* rtl.h (LABEL_REFS): Update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@16333 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 16de2806d03..9f9abda2962 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -464,7 +464,7 @@ extern char *note_insn_name[]; each CODE_LABEL starts a chain that goes through all the LABEL_REFs that jump to that label. The chain eventually winds up at the CODE_LABEL; it is circular. */ -#define LABEL_REFS(LABEL) ((LABEL)->fld[5].rtx) +#define LABEL_REFS(LABEL) ((LABEL)->fld[6].rtx) /* This is the field in the LABEL_REF through which the circular chain of references to a particular label is linked. |