From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6225 invoked by alias); 10 Aug 2010 09:07:20 -0000 Received: (qmail 4753 invoked by uid 48); 10 Aug 2010 09:06:57 -0000 Date: Tue, 10 Aug 2010 09:07:00 -0000 Message-ID: <20100810090657.4749.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug tree-optimization/45241] CPU2006 465.tonto ICE in the vectorizer with -fno-tree-pre In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "irar at il dot ibm 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: 2010-08/txt/msg00726.txt.bz2 ------- Comment #4 from irar at il dot ibm dot com 2010-08-10 09:06 ------- I am testing the same patch as in comment #1. Testcase that shows the problem: int foo(short x) { short i, y; int sum; for (i = 0; i < x; i++) y = x * i; for (i = x; i > 0; i--) sum += y; return sum; } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45241