From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30642 invoked by alias); 4 Apr 2002 13:47:02 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 30630 invoked from network); 4 Apr 2002 13:47:00 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.240.27) by sources.redhat.com with SMTP; 4 Apr 2002 13:47:00 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 389563E59; Thu, 4 Apr 2002 08:47:01 -0500 (EST) Message-ID: <3CAC5955.8050207@cygnus.com> Date: Thu, 04 Apr 2002 05:47:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.9) Gecko/20020328 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Michal Ludvig Cc: gdb Subject: Re: Can't store a floating-point number of 16 bytes. References: <3CAC2478.1040808@suse.cz> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-04/txt/msg00040.txt.bz2 > Hi, > what does the following warning mean? > > warning: Can't store a floating-point number of 16 bytes. bug. > It occures when I'm debugging gdb and am printing a dereferenced pointer of type (DOUBLEST*) like the variable out in file doublest.c around line 565. > > Michal Ludvig 16 byte FP's? Set a breakpoint on warning() and see what the stack trace tells you. Most likely something isn't handling such large values. Andrew