diff options
Diffstat (limited to 'gcc/tree-vect-transform.c')
-rw-r--r-- | gcc/tree-vect-transform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-vect-transform.c b/gcc/tree-vect-transform.c index 7e2f37d..e51d56f 100644 --- a/gcc/tree-vect-transform.c +++ b/gcc/tree-vect-transform.c @@ -1151,7 +1151,7 @@ vect_is_simple_cond (tree cond, loop_vec_info loop_vinfo) { tree lhs, rhs; - if (TREE_CODE_CLASS (TREE_CODE (cond)) != tcc_comparison) + if (!COMPARISON_CLASS_P (cond)) return false; lhs = TREE_OPERAND (cond, 0); |