diff options
author | Marc Glisse <marc.glisse@inria.fr> | 2013-03-21 22:11:56 +0100 |
---|---|---|
committer | Marc Glisse <glisse@gcc.gnu.org> | 2013-03-21 21:11:56 +0000 |
commit | 6f37411dcade5f7b3e326ab6e80623034a0b5b59 (patch) | |
tree | 1f657498583f4dae2746478be86a85d0c6898b82 /gcc/cfgexpand.c | |
parent | 511ef689f442669bf1f046365985b0a67f9531db (diff) | |
download | gcc-6f37411dcade5f7b3e326ab6e80623034a0b5b59.zip gcc-6f37411dcade5f7b3e326ab6e80623034a0b5b59.tar.gz gcc-6f37411dcade5f7b3e326ab6e80623034a0b5b59.tar.bz2 |
tree-pass.h (PROP_gimple_lvec): New.
2013-03-21 Marc Glisse <marc.glisse@inria.fr>
* tree-pass.h (PROP_gimple_lvec): New.
* passes.c (dump_properties): Handle PROP_gimple_lvec.
(init_optimization_passes): Move pass_lower_vector.
* tree-vect-generic.c (gate_expand_vector_operations_ssa): Test
PROP_gimple_lvec.
(pass_lower_vector): Provide PROP_gimple_lvec.
(pass_lower_vector_ssa): Likewise.
* cfgexpand.c (pass_expand): Require PROP_gimple_lvec.
From-SVN: r196890
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 7242b21..771b019 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -4858,7 +4858,8 @@ struct rtl_opt_pass pass_expand = 0, /* static_pass_number */ TV_EXPAND, /* tv_id */ PROP_ssa | PROP_gimple_leh | PROP_cfg - | PROP_gimple_lcx, /* properties_required */ + | PROP_gimple_lcx + | PROP_gimple_lvec, /* properties_required */ PROP_rtl, /* properties_provided */ PROP_ssa | PROP_trees, /* properties_destroyed */ TODO_verify_ssa | TODO_verify_flow |