From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12204 invoked by alias); 20 Dec 2004 19:04:38 -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 12153 invoked by uid 48); 20 Dec 2004 19:04:35 -0000 Date: Mon, 20 Dec 2004 19:04:00 -0000 Message-ID: <20041220190435.12152.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20041216155140.19038.dje@gcc.gnu.org> References: <20041216155140.19038.dje@gcc.gnu.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug tree-optimization/19038] [4.0 Regression] out-of ssa causing loops to have more than one BB X-Bugzilla-Reason: CC X-SW-Source: 2004-12/txt/msg02920.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2004-12-20 19:04 ------- The reduced testcase (well heavely modified) looks like: int f (int temp2, int temp3, int xlvj_, int zlvj_, int yv1j_, int yv2j_) { int temp1, temp5; for(;;) { temp1 = temp2*xlvj_ - temp3*zlvj_; temp3 = temp2*zlvj_ + temp3*xlvj_; temp5 = temp2; temp2 = temp1; if (temp3) break; } return yv1j_ * yv2j_; } Before the tree-ssa we would produce one BB when creating RTL but after out of ssa produces an extra BB to hold " temp2 = temp1;" -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19038