From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5681 invoked by alias); 16 May 2005 13:55:50 -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 5502 invoked by uid 48); 16 May 2005 13:55:34 -0000 Date: Mon, 16 May 2005 13:55:00 -0000 Message-ID: <20050516135534.5501.qmail@sourceware.org> From: "rguenth at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040517043308.15484.dann@godzilla.ics.uci.edu> References: <20040517043308.15484.dann@godzilla.ics.uci.edu> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug tree-optimization/15484] [tree-ssa] bool and short function arguments promoted to int X-Bugzilla-Reason: CC X-SW-Source: 2005-05/txt/msg02201.txt.bz2 List-Id: ------- Additional Comments From rguenth at gcc dot gnu dot org 2005-05-16 13:55 ------- Maybe the same problem results in static inline bool wrap(bool f) { return f; } bool bar(bool f) { return wrap(f); } producing return (int) (bool) (int) (bool) (int) f; (and more, if you add another wrap()) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15484