diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-18 17:04:26 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-18 17:04:26 +0000 |
commit | 0ac758f73d7757418f92a4468cf11cb5517f1b19 (patch) | |
tree | 9ffa72fee709efb6885ad516b9076279d60c9e24 /gcc/df-scan.c | |
parent | 8fa85fc5e4c9e98608d5a0d8281b8f8b75ac7096 (diff) | |
download | gcc-0ac758f73d7757418f92a4468cf11cb5517f1b19.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@144938 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/df-scan.c')
-rw-r--r-- | gcc/df-scan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/df-scan.c b/gcc/df-scan.c index 6888fb42ee3..d8ad4a06698 100644 --- a/gcc/df-scan.c +++ b/gcc/df-scan.c @@ -1,6 +1,6 @@ /* Scanning of rtl for dataflow analysis. Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, - 2008 Free Software Foundation, Inc. + 2008, 2009 Free Software Foundation, Inc. Originally contributed by Michael P. Hayes (m.hayes@elec.canterbury.ac.nz, mhayes@redhat.com) Major rewrite contributed by Danny Berlin (dberlin@dberlin.org) @@ -85,12 +85,12 @@ static HARD_REG_SET elim_reg_set; struct df_collection_rec { df_ref * def_vec; - unsigned int next_def; df_ref * use_vec; + unsigned int next_def; unsigned int next_use; df_ref * eq_use_vec; - unsigned int next_eq_use; struct df_mw_hardreg **mw_vec; + unsigned int next_eq_use; unsigned int next_mw; }; |