tree-if-conv.c (gate_tree_if_conversion): Enable only if the vectorizer is enabled.
* tree-if-conv.c (gate_tree_if_conversion): Enable only if the vectorizer is enabled. From-SVN: r87103
This commit is contained in:
parent
c99960000c
commit
2addf92620
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-09-05 Diego Novillo <dnovillo@redhat.com>
|
||||
|
||||
* tree-if-conv.c (gate_tree_if_conversion): Enable only if the
|
||||
vectorizer is enabled.
|
||||
|
||||
2004-09-05 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* tree-if-conv.c: Spell check comments and clean up whitespace.
|
||||
|
|
|
@ -1078,7 +1078,7 @@ main_tree_if_conversion (void)
|
|||
static bool
|
||||
gate_tree_if_conversion (void)
|
||||
{
|
||||
return true;
|
||||
return flag_tree_vectorize != 0;
|
||||
}
|
||||
|
||||
struct tree_opt_pass pass_if_conversion =
|
||||
|
|
Loading…
Add table
Reference in a new issue