From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3807 invoked by alias); 23 Sep 2002 20:46:04 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 3786 invoked by uid 71); 23 Sep 2002 20:46:03 -0000 Date: Mon, 23 Sep 2002 13:46:00 -0000 Message-ID: <20020923204603.3785.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Falk Hueffner Subject: Re: c/8002: internal compiler error: in trunc_int_for_mode, at explow.c:54 (Alpha) Reply-To: Falk Hueffner X-SW-Source: 2002-09/txt/msg00643.txt.bz2 List-Id: The following reply was made to PR c/8002; it has been noted by GNATS. From: Falk Hueffner To: gcc-gnats@gcc.gnu.org, gcc-prs@gcc.gnu.org, gcc-bugs@gcc.gnu.org Cc: Subject: Re: c/8002: internal compiler error: in trunc_int_for_mode, at explow.c:54 (Alpha) Date: 23 Sep 2002 22:41:15 +0200 Hi, here's a smaller testcase: float expm1f(float x) { union { float value; unsigned word; } sf_u; sf_u.word = (unsigned) x * 2; return x + sf_u.value; } -- Falk