vect: remove unused variable in complex numbers detection code.

This removed an unused variable that clang seems to catch when
compiling GCC with Clang.

gcc/ChangeLog:

	* tree-vect-slp-patterns.c (complex_mul_pattern::matches): Remove l1node.
This commit is contained in:
Tamar Christina 2021-11-10 12:01:50 +00:00
parent 77963796ae
commit 5cfa174e08
1 changed files with 0 additions and 1 deletions

View File

@ -946,7 +946,6 @@ complex_mul_pattern::matches (complex_operation_t op,
auto childs = *ops;
auto l0node = SLP_TREE_CHILDREN (childs[0]);
auto l1node = SLP_TREE_CHILDREN (childs[1]);
bool mul0 = vect_match_expression_p (l0node[0], MULT_EXPR);
bool mul1 = vect_match_expression_p (l0node[1], MULT_EXPR);