From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12521 invoked by alias); 16 Jan 2009 21:06:33 -0000 Received: (qmail 12264 invoked by uid 48); 16 Jan 2009 21:06:24 -0000 Date: Fri, 16 Jan 2009 21:06:00 -0000 Subject: [Bug tree-optimization/38885] New: missed FRE with BIT_FIELD_REF and vectors X-Bugzilla-Reason: CC Message-ID: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "pinskia 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: 2009-01/txt/msg01853.txt.bz2 Another one like PR 38884 and 38865. Simple testcase: #define vector __attribute__((vector_size(16) )) vector float global_res; float x; int main(int argc) { vector float res = (vector float)(0.0f,0.0f,0.0f,1.0f); res += (vector float)(0.0f,0.0f,0.0f,1.0f); global_res = res; x = *(float*)(&global_res); return 0; } -- Summary: missed FRE with BIT_FIELD_REF and vectors Product: gcc Version: 4.4.0 Status: UNCONFIRMED Keywords: missed-optimization Severity: enhancement Priority: P3 Component: tree-optimization AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: pinskia at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38885