diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-03-18 18:04:26 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2009-03-18 18:04:26 +0100 |
commit | 8f5929e11fa965fd2ad5d63c55de1cebc1b06af3 (patch) | |
tree | 9ffa72fee709efb6885ad516b9076279d60c9e24 /gcc/ira.c | |
parent | 9968d233b33186f70cbf9b265ec15b8b97153128 (diff) | |
download | gcc-8f5929e11fa965fd2ad5d63c55de1cebc1b06af3.zip gcc-8f5929e11fa965fd2ad5d63c55de1cebc1b06af3.tar.gz gcc-8f5929e11fa965fd2ad5d63c55de1cebc1b06af3.tar.bz2 |
dse.c (struct group_info): Reorder fields for 64-bit hosts.
* dse.c (struct group_info): Reorder fields for 64-bit hosts.
* matrix-reorg.c (struct matrix_info): Likewise.
* tree-ssa-loop-ivopts.c (struct ivopts_data): Likewise.
* rtl.h (struct mem_attrs): Likewise.
* df.h (struct df): Likewise.
* tree-data-ref.h (struct data_dependence_relation): Likewise.
* ira-int.h (struct ira_allocno): Likewise.
* df-scan.c (struct df_collection_rec): Likewise.
* ira.c (struct equivalence): Likewise.
* function.c (struct temp_slot): Likewise.
* cfgloop.h (struct loop): Likewise.
* parser.c (struct cp_token): Reorder fields for 64-bit hosts.
(eof_token): Adjust.
* include/cpplib.h (struct cpp_dir): Reorder fields for 64-bit hosts.
From-SVN: r144938
Diffstat (limited to 'gcc/ira.c')
-rw-r--r-- | gcc/ira.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1864,21 +1864,21 @@ mark_elimination (int from, int to) struct equivalence { - /* Set when an attempt should be made to replace a register - with the associated src_p entry. */ - char replace; /* Set when a REG_EQUIV note is found or created. Use to keep track of what memory accesses might be created later, e.g. by reload. */ rtx replacement; rtx *src_p; + /* The list of each instruction which initializes this register. */ + rtx init_insns; /* Loop depth is used to recognize equivalences which appear to be present within the same loop (or in an inner loop). */ int loop_depth; - /* The list of each instruction which initializes this register. */ - rtx init_insns; /* Nonzero if this had a preexisting REG_EQUIV note. */ int is_arg_equivalence; + /* Set when an attempt should be made to replace a register + with the associated src_p entry. */ + char replace; }; /* reg_equiv[N] (where N is a pseudo reg number) is the equivalence |