From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31647 invoked by alias); 10 Dec 2004 13:35:17 -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 31562 invoked by uid 48); 10 Dec 2004 13:35:13 -0000 Date: Fri, 10 Dec 2004 13:35:00 -0000 Message-ID: <20041210133513.31557.qmail@sourceware.org> From: "paulthomas2 at wanadoo dot fr" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040824203618.17175.dje@gcc.gnu.org> References: <20040824203618.17175.dje@gcc.gnu.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug fortran/17175] set_exponent breaks with integer*8 exponent X-Bugzilla-Reason: CC X-SW-Source: 2004-12/txt/msg01476.txt.bz2 List-Id: ------- Additional Comments From paulthomas2 at wanadoo dot fr 2004-12-10 13:35 ------- You have fixed this one, haven't you? cvs 20041205 runs it fine. However, in testing, I found another nasty: y = 1/2 + 1/8 !y= 0.125 + 0.5 !!works OK x = set_exponent (y, 5_4) print *,x x = set_exponent (y, 5_8) print *,x end gives $ ./a 0.000000 0.000000 instead of 20.00000 20.00000 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17175