From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 97230 invoked by alias); 13 Dec 2017 02:53:28 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 97217 invoked by uid 89); 13 Dec 2017 02:53:27 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,KAM_NUMSUBJECT,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 spammy=Administrator X-HELO: smtp.polymtl.ca Received: from smtp.polymtl.ca (HELO smtp.polymtl.ca) (132.207.4.11) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 13 Dec 2017 02:53:26 +0000 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id vBD2rJQA024241 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Tue, 12 Dec 2017 21:53:24 -0500 Received: by simark.ca (Postfix, from userid 112) id B4D131E586; Tue, 12 Dec 2017 21:53:19 -0500 (EST) Received: from simark.ca (localhost [127.0.0.1]) by simark.ca (Postfix) with ESMTP id E9E031E4C4; Tue, 12 Dec 2017 21:53:17 -0500 (EST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 13 Dec 2017 02:53:00 -0000 From: Simon Marchi To: shorne@gmail.com Cc: gdb-patches@sourceware.org Subject: Re: New ARI warning Wed Dec 13 01:56:09 UTC 2017 In-Reply-To: <20171213015609.GA100898@sourceware.org> References: <20171213015609.GA100898@sourceware.org> Message-ID: <9452aa8f742176ecf3bce3044dd74854@polymtl.ca> X-Sender: simon.marchi@polymtl.ca User-Agent: Roundcube Webmail/1.3.2 X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Wed, 13 Dec 2017 02:53:19 +0000 X-IsSubscribed: yes X-SW-Source: 2017-12/txt/msg00289.txt.bz2 On 2017-12-12 20:56, GDB Administrator wrote: > 394a395,403 >> gdb/or1k-tdep.c:135: gettext: _ markup: All messages should be marked >> up with _. > gdb/or1k-tdep.c:135: error ("bitstring \"%s\" at offset %d has no > length field.\n", >> gdb/or1k-tdep.c:144: gettext: _ markup: All messages should be marked >> up with _. > gdb/or1k-tdep.c:144: error ("bitstring \"%s\" at offset %d has no > terminating 'b'.\n", >> gdb/or1k-tdep.c:161: gettext: _ markup: All messages should be marked >> up with _. > gdb/or1k-tdep.c:161: error ("invalid character in bitstring \"%s\" > at offset %d.\n", >> gdb/or1k-tdep.c:544: code: %p: Do not use printf(%p), instead use >> printf(%s,paddr()) to dump a target address, or >> host_address_to_string() for a host address > gdb/or1k-tdep.c:544: fprintf_unfiltered (gdb_stdlog, > "or1k_unwind_pc, pc=0x%p\n", >> gdb/or1k-tdep.c:564: code: %p: Do not use printf(%p), instead use >> printf(%s,paddr()) to dump a target address, or >> host_address_to_string() for a host address > gdb/or1k-tdep.c:564: fprintf_unfiltered (gdb_stdlog, > "or1k_unwind_sp, sp=0x%p\n", >> gdb/or1k-tdep.c:885: code: %p: Do not use printf(%p), instead use >> printf(%s,paddr()) to dump a target address, or >> host_address_to_string() for a host address > gdb/or1k-tdep.c:885: "or1k_frame_cache, prologue_cache = 0x%p\n", >> gdb/or1k-tdep.c:945: gettext: _ markup: All messages should be marked >> up with _. > gdb/or1k-tdep.c:945: error ("end addr 0x%08x is less than start > addr 0x%08x\n", >> gdb/or1k-tdep.c:1071: code: %p: Do not use printf(%p), instead use >> printf(%s,paddr()) to dump a target address, or >> host_address_to_string() for a host address > gdb/or1k-tdep.c:1071: fprintf_unfiltered (gdb_stdlog, " > this_sp_for_id = 0x%p\n", >> gdb/or1k-tdep.c:1073: code: %p: Do not use printf(%p), instead use >> printf(%s,paddr()) to dump a target address, or >> host_address_to_string() for a host address > gdb/or1k-tdep.c:1073: fprintf_unfiltered (gdb_stdlog, " > start_addr = 0x%p\n", Hi Stafford, Could you address the warnings mentioned above? They should be pretty straightforward, I think it will be an obvious patch. Simon