diff options
author | Richard Biener <rguenther@suse.de> | 2017-03-14 12:47:42 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2017-03-14 12:47:42 +0000 |
commit | 34e8234204cb51e65f0e4b325634208a227cc8f3 (patch) | |
tree | 365347923620859b17381723ff0346cbc96bc340 /gcc/loop-invariant.c | |
parent | 546eb36c7e0ba37974489280059ca14166f07c26 (diff) | |
download | gcc-34e8234204cb51e65f0e4b325634208a227cc8f3.zip gcc-34e8234204cb51e65f0e4b325634208a227cc8f3.tar.gz gcc-34e8234204cb51e65f0e4b325634208a227cc8f3.tar.bz2 |
alias.c (struct alias_set_entry): Pack properly.
2017-03-14 Richard Biener <rguenther@suse.de>
* alias.c (struct alias_set_entry): Pack properly.
* cfgloop.h (struct loop): Likewise.
* cse.c (struct set): Likewise.
* ipa-utils.c (struct searchc_env): Likewise.
* loop-invariant.c (struct invariant): Likewise.
* lra-remat.c (struct cand): Likewise.
* recog.c (struct change_t): Likewise.
* rtl.h (struct address_info): Likewise.
* symbol-summary.h (function_summary): Likewise.
* tree-loop-distribution.c (struct partition): Likewise.
* tree-object-size.c (struct object_size_info): Likewise.
* tree-ssa-loop-ivopts.c (struct cost_pair): Likewise.
* tree-ssa-threadupdate.c (struct ssa_local_info_t): Likewise.
* tree-vect-data-refs.c (struct _vect_peel_info): Likewise.
* tree-vect-slp.c (struct _slp_oprnd_info): Likewise.
* tree-vect-stmts.c (struct simd_call_arg_info): Likewise.
* tree-vectorizer.h (struct _loop_vec_info): Likewise.
(struct _stmt_vec_info): Likewise.
From-SVN: r246121
Diffstat (limited to 'gcc/loop-invariant.c')
-rw-r--r-- | gcc/loop-invariant.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/loop-invariant.c b/gcc/loop-invariant.c index e2367a8..8292cea 100644 --- a/gcc/loop-invariant.c +++ b/gcc/loop-invariant.c @@ -108,14 +108,14 @@ struct invariant /* The number of invariants which eqto this. */ unsigned eqno; - /* If we moved the invariant out of the loop, the register that contains its - value. */ - rtx reg; - /* If we moved the invariant out of the loop, the original regno that contained its value. */ int orig_regno; + /* If we moved the invariant out of the loop, the register that contains its + value. */ + rtx reg; + /* The definition of the invariant. */ struct def *def; @@ -134,12 +134,12 @@ struct invariant /* Cost of the invariant. */ unsigned cost; - /* The invariants it depends on. */ - bitmap depends_on; - /* Used for detecting already visited invariants during determining costs of movements. */ unsigned stamp; + + /* The invariants it depends on. */ + bitmap depends_on; }; /* Currently processed loop. */ |