From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17417 invoked by alias); 23 Feb 2004 21:27:36 -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 17407 invoked from network); 23 Feb 2004 21:27:33 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (213.93.115.144) by sources.redhat.com with SMTP; 23 Feb 2004 21:27:33 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i1NLQEKb000314; Mon, 23 Feb 2004 22:26:14 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i1NLQEYB000371; Mon, 23 Feb 2004 22:26:14 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6/Submit) id i1NLQ8cw000368; Mon, 23 Feb 2004 22:26:08 +0100 (CET) Date: Mon, 23 Feb 2004 21:27:00 -0000 Message-Id: <200402232126.i1NLQ8cw000368@elgar.kettenis.dyndns.org> From: Mark Kettenis To: schwab@suse.de CC: mec.gnu@mindspring.com, gdb@sources.redhat.com, jjohnstn@redhat.com In-reply-to: (message from Andreas Schwab on Mon, 23 Feb 2004 21:42:25 +0100) Subject: Re: regression with huge integer References: <20040223195548.B7CDD4B104@berman.michael-chastain.com> X-SW-Source: 2004-02/txt/msg00330.txt.bz2 From: Andreas Schwab Date: Mon, 23 Feb 2004 21:42:25 +0100 mec.gnu@mindspring.com (Michael Elizabeth Chastain) writes: > But with the recent simplification to print_scalar_formatted, gdb > HEAD says: > > (gdb) print int256var > $1 = 0x0000002a0000002b0000002c0000002d0000002d0000002c0000002b0000002a > (gdb) print /x int256var > $2 = That operation is not available on integers of more than 8 bytes. That looks like gdb is contradicting itself. It can print in hex, but then asked to print in hex it cannot. :-) So this test uncovers a genuine bug. Therefore, we shouldn't adjust the testsuite. Mark