From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24567 invoked by alias); 11 Jun 2005 19:06:03 -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 24526 invoked by uid 48); 11 Jun 2005 19:05:58 -0000 Date: Sat, 11 Jun 2005 19:06:00 -0000 Message-ID: <20050611190558.24525.qmail@sourceware.org> From: "rguenth at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040509200719.15353.kazu@cs.umass.edu> References: <20040509200719.15353.kazu@cs.umass.edu> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug tree-optimization/15353] [tree-ssa] Merge two "if"s if one subsumes the other. X-Bugzilla-Reason: CC X-SW-Source: 2005-06/txt/msg01571.txt.bz2 List-Id: ------- Additional Comments From rguenth at gcc dot gnu dot org 2005-06-11 19:05 ------- And it should merge them, too, like for int g(void); int h(void); int f(int i, int j) { while (1) { if (i > j) break; if (i == j) break; return g(); } return h(); } -- What |Removed |Added ---------------------------------------------------------------------------- CC| |rguenth at tat dot physik | |dot uni-tuebingen dot de http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15353