From patchwork Tue Dec 6 16:15:41 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis Machado X-Patchwork-Id: 18238 Received: (qmail 16447 invoked by alias); 6 Dec 2016 16:15:58 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 16437 invoked by uid 89); 6 Dec 2016 16:15:57 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy=29, 11, 2911, Hx-languages-length:1057 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 06 Dec 2016 16:15:44 +0000 Received: from svr-orw-fem-04.mgc.mentorg.com ([147.34.97.41]) by relay1.mentorg.com with esmtp id 1cEIP9-0006UN-CH from Luis_Gustavo@mentor.com for gdb-patches@sourceware.org; Tue, 06 Dec 2016 08:15:43 -0800 Received: from Opsys.world.mentorg.com (147.34.91.1) by svr-orw-fem-04.mgc.mentorg.com (147.34.97.41) with Microsoft SMTP Server id 14.3.224.2; Tue, 6 Dec 2016 08:15:42 -0800 From: Luis Machado To: Subject: [PATCH, obvious?] Fix incorrect reference to source files Date: Tue, 6 Dec 2016 10:15:41 -0600 Message-ID: <1481040941-21237-1-git-send-email-lgustavo@codesourcery.com> MIME-Version: 1.0 X-IsSubscribed: yes These auto-generated register source files have been renamed back in 2010. It took me a while to find these due to the mismatch. gdb/gdbserver/ChangeLog: 2016-12-06 Luis Machado * win32-i386-low.c: Fix incorrect reference to a couple source files. --- gdb/gdbserver/win32-i386-low.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdb/gdbserver/win32-i386-low.c b/gdb/gdbserver/win32-i386-low.c index 5daa863..edae9bb 100644 --- a/gdb/gdbserver/win32-i386-low.c +++ b/gdb/gdbserver/win32-i386-low.c @@ -29,11 +29,11 @@ #define FLAG_TRACE_BIT 0x100 #ifdef __x86_64__ -/* Defined in auto-generated file reg-amd64.c. */ +/* Defined in auto-generated file amd64.c. */ void init_registers_amd64 (void); extern const struct target_desc *tdesc_amd64; #else -/* Defined in auto-generated file reg-i386.c. */ +/* Defined in auto-generated file i386.c. */ void init_registers_i386 (void); extern const struct target_desc *tdesc_i386; #endif