From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24896 invoked by alias); 30 Sep 2007 10:29:09 -0000 Received: (qmail 24828 invoked by uid 48); 30 Sep 2007 10:28:59 -0000 Date: Sun, 30 Sep 2007 10:29:00 -0000 Message-ID: <20070930102859.24827.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug middle-end/33597] Internal compiler error while compiling libswcale from ffmpeg In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "ubizjak at gmail dot com" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2007-09/txt/msg02472.txt.bz2 ------- Comment #5 from ubizjak at gmail dot com 2007-09-30 10:28 ------- Patch in testing: --cut here-- Index: tree-vect-analyze.c =================================================================== --- tree-vect-analyze.c (revision 128890) +++ tree-vect-analyze.c (working copy) @@ -2696,6 +2696,13 @@ return false; } icode = (int) optab->handlers[(int) vec_mode].insn_code; + if (icode == CODE_FOR_nothing) + { + if (vect_print_dump_info (REPORT_SLP)) + fprintf (vect_dump, + "Build SLP failed: op not supported by target."); + return false; + } optab_op2_mode = insn_data[icode].operand[2].mode; if (!VECTOR_MODE_P (optab_op2_mode)) { --cut here-- -- ubizjak at gmail dot com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at gcc dot gnu |ubizjak at gmail dot com |dot org | Status|NEW |ASSIGNED Last reconfirmed|2007-09-30 10:03:40 |2007-09-30 10:28:58 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33597