From patchwork Fri Jun 11 19:25:01 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: vect pat recog fails in sbitmap.c on ia64 From: Alexandre Oliva X-Patchwork-Id: 55352 Message-Id: To: gcc-patches@gcc.gnu.org Date: Fri, 11 Jun 2010 16:25:01 -0300 A -O3 bootstrap on ia64-linux-gnu crashes building sbitmap.c in stage2. The problem is that get_vectype_for_scalar_type (type_out = ) returns type_out = NULL, and then vect_pattern_recog_1 crashes when it attempts to take the mode of the returned type. I'm not sure whether returning immediately (like we do for type_in) or using the original scalar type_out is best. The latter is what I regstrapped on ia64-linux-gnu. Ok to install? for gcc/ChangeLog from Alexandre Oliva * tree-vect-patterns.c (vect_pattern_recog_1): Use scalar type if we don't get a vector type for output. Index: gcc/tree-vect-patterns.c =================================================================== --- gcc/tree-vect-patterns.c.orig 2010-06-10 14:28:05.000000000 -0300 +++ gcc/tree-vect-patterns.c 2010-06-10 14:29:26.000000000 -0300 @@ -696,7 +696,12 @@ vect_pattern_recog_1 ( if (!type_in) return; if (type_out) - type_out = get_vectype_for_scalar_type (type_out); + { + tree saved_type_out = type_out; + type_out = get_vectype_for_scalar_type (type_out); + if (!type_out) + type_out = saved_type_out; + } else type_out = type_in; pattern_vectype = type_out;