From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27807 invoked by alias); 15 Oct 2008 21:49:06 -0000 Received: (qmail 27133 invoked by uid 48); 15 Oct 2008 21:47:46 -0000 Date: Wed, 15 Oct 2008 21:49:00 -0000 Message-ID: <20081015214746.27132.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug tree-optimization/37573] [4.4 Regression] gcc-4.4 regression: incorrect code generation with -O1 -ftree-vectorize In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "rguenth at gcc dot gnu dot org" 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: 2008-10/txt/msg01031.txt.bz2 ------- Comment #9 from rguenth at gcc dot gnu dot org 2008-10-15 21:47 ------- IMHO the fix for the tuplification bug(!) is to strip the ADDR_EXPR that is always present on op0 in split_constant_offset_1 so: case ADDR_EXPR: { tree base, poffset; HOST_WIDE_INT pbitsize, pbitpos; enum machine_mode pmode; int punsignedp, pvolatilep; op0 = TREE_OPERAND (op0, 0); if (!handled_component_p (op0)) return false; -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37573