From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19315 invoked by alias); 23 Jul 2002 05:51:46 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 19308 invoked from network); 23 Jul 2002 05:51:46 -0000 Received: from unknown (HELO potter.sfbay.redhat.com) (205.180.83.107) by sources.redhat.com with SMTP; 23 Jul 2002 05:51:46 -0000 Received: from romulus.sfbay.redhat.com (remus.sfbay.redhat.com [172.16.27.252]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id g6N5q6Q20081; Mon, 22 Jul 2002 22:52:06 -0700 Received: (from kev@localhost) by romulus.sfbay.redhat.com (8.11.6/8.11.6) id g6N5phZ28305; Mon, 22 Jul 2002 22:51:43 -0700 Date: Tue, 23 Jul 2002 03:32:00 -0000 From: Kevin Buettner Message-Id: <1020723055143.ZM28304@localhost.localdomain> In-Reply-To: Andrew Cagney "Adding %ll to ARI" (Jul 19, 8:42pm) References: <3D3896DA.7EE844A8@redhat.com> <3D38B205.9000702@ges.redhat.com> To: Andrew Cagney , Michael Snyder Subject: Re: Adding %ll to ARI Cc: gdb-patches@sources.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-07/txt/msg00455.txt.bz2 On Jul 19, 8:42pm, Andrew Cagney wrote: > Just noticed this in aix-thread.c. I'm adding %ll to the ARI. I'm > pretty sure that isn't ISO C. While valprint.c wrapped it up in: > > #if defined (CC_HAS_LONG_LONG) && defined (PRINTF_HAS_LONG_LONG) > > I think using %s and phex() and friends will be easier. I've fixed this problem in aix-thread.c. I ended up using local_hex_string() due to its simpler interface. Kevin