aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfgloop.h
diff options
context:
space:
mode:
authorNathan Froyd <froydnj@codesourcery.com>2010-04-26 18:21:17 +0000
committerNathan Froyd <froydnj@gcc.gnu.org>2010-04-26 18:21:17 +0000
commit448f65dba370077858a46c17c869c33a12f158a4 (patch)
treeb29bb045ba52e3ce9f6781d3569951a8bdc1e19b /gcc/cfgloop.h
parenta1cbd45d53cf329cef12c2adccba5001a9d399c9 (diff)
downloadgcc-448f65dba370077858a46c17c869c33a12f158a4.zip
gcc-448f65dba370077858a46c17c869c33a12f158a4.tar.gz
gcc-448f65dba370077858a46c17c869c33a12f158a4.tar.bz2
cfgloop.h (struct loop): Move can_be_parallel field up.
* cfgloop.h (struct loop): Move can_be_parallel field up. * ipa-prop.h (struct ip_node_params): Move bitfields up. * tree-ssa-loop-ivopts.c (struct version_info): Move inv_id field down. (struct iv_cand): Convert pos field into a bitfield. * tree-vectorizer.h (struct _loop_vec_info): Move loop_line_number field up. (struct _stmt_vec_info): Shuffle fields for better packing. From-SVN: r158743
Diffstat (limited to 'gcc/cfgloop.h')
-rw-r--r--gcc/cfgloop.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cfgloop.h b/gcc/cfgloop.h
index 26f9050..4135ed7 100644
--- a/gcc/cfgloop.h
+++ b/gcc/cfgloop.h
@@ -148,6 +148,9 @@ struct GTY ((chain_next ("%h.next"))) loop {
bool any_upper_bound;
bool any_estimate;
+ /* True if the loop can be parallel. */
+ bool can_be_parallel;
+
/* An integer estimation of the number of iterations. Estimate_state
describes what is the state of the estimation. */
enum loop_estimation estimate_state;
@@ -158,9 +161,6 @@ struct GTY ((chain_next ("%h.next"))) loop {
/* Head of the cyclic list of the exits of the loop. */
struct loop_exit *exits;
- /* True if the loop can be parallel. */
- bool can_be_parallel;
-
/* The single induction variable of the loop when the loop is in
normal form. */
tree single_iv;