From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18436 invoked by alias); 27 Jan 2005 01:26:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 18250 invoked by uid 48); 27 Jan 2005 01:26:42 -0000 Date: Thu, 27 Jan 2005 01:26:00 -0000 Message-ID: <20050127012642.18249.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20050127010119.19650.dalej@apple.com> References: <20050127010119.19650.dalej@apple.com> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug middle-end/19650] [4.0 Regression] miscompilation of correct code X-Bugzilla-Reason: CC X-SW-Source: 2005-01/txt/msg03960.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-27 01:26 ------- Here is the most reduced testcase I came up with (this might be another type mismatch problem in tree-ssa-phiopt but I could be wrong if you replace a1[0][i] by a[0][a==2] it works): int g(void); void h(int); int a1[1][2]={{0,1}}; int main(void) { int a = g(); int i = (a==2)?1:0; h(a1[0][i]); return 0; } int g(void) { return 2; } extern "C" void abort(void); void h(int a) { if (a!=1) abort (); } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19650