Commit 15bbc165 by Alexandre Oliva Committed by Alexandre Oliva

tree-vect-patterns.c (vect_pattern_recog_1): Bail out if we don't get a vector type for output.

* tree-vect-patterns.c (vect_pattern_recog_1): Bail out if we
don't get a vector type for output.

From-SVN: r160781
parent 79943d19
2010-06-15 Alexandre Oliva <aoliva@redhat.com>
* tree-vect-patterns.c (vect_pattern_recog_1): Bail out if we
don't get a vector type for output.
2010-06-15 Jakub Jelinek <jakub@redhat.com>
PR fortran/44536
......
......@@ -699,6 +699,8 @@ vect_pattern_recog_1 (
type_out = get_vectype_for_scalar_type (type_out);
else
type_out = type_in;
if (!type_out)
return;
pattern_vectype = type_out;
if (is_gimple_assign (pattern_stmt))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment