diff options
author | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-20 12:13:01 +0000 |
---|---|---|
committer | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-20 12:13:01 +0000 |
commit | f62c22a7d66f482c175bb757ba68140fbfd4d7ca (patch) | |
tree | a57671669fbfd5657118b391b8d79c45adb0f729 /gcc/reload.h | |
parent | c9c253ebb036304c432b11d2fb13417f9578601f (diff) | |
download | gcc-f62c22a7d66f482c175bb757ba68140fbfd4d7ca.tar.gz |
Change some regsets to regset_heads
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31032 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reload.h')
-rw-r--r-- | gcc/reload.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/reload.h b/gcc/reload.h index 391c047c882..ebfdbc5f9d1 100644 --- a/gcc/reload.h +++ b/gcc/reload.h @@ -225,8 +225,8 @@ struct insn_chain rtx insn; /* Register life information: record all live hard registers, and all live pseudos that have a hard register. */ - regset live_throughout; - regset dead_or_set; + regset_head live_throughout; + regset_head dead_or_set; /* Copies of the global variables computed by find_reloads. */ struct reload *rld; |