From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 392 invoked by alias); 20 Nov 2008 17:00:06 -0000 Received: (qmail 25232 invoked by uid 48); 20 Nov 2008 16:58:40 -0000 Date: Thu, 20 Nov 2008 17:00:00 -0000 Subject: [Bug middle-end/38204] New: PRE for post dominating expressions X-Bugzilla-Reason: CC Message-ID: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "dann at godzilla dot ics dot uci dot edu" 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-11/txt/msg01695.txt.bz2 For this function: int test (int a, int b, int c, int g) { int d, e; if (a) d = b * c; else d = b - c; e = b * c + g; return d + e; } the multiply expression is moved to both branches of the "if", it would be better to move it before the "if". Intel's compiler does that. -- Summary: PRE for post dominating expressions Product: gcc Version: 4.3.3 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dann at godzilla dot ics dot uci dot edu GCC host triplet: i386-pc-linux http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38204