From patchwork Tue Jul 16 00:23:41 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Baldwin X-Patchwork-Id: 33694 Received: (qmail 124028 invoked by alias); 16 Jul 2019 00:25:36 -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 124010 invoked by uid 89); 16 Jul 2019 00:25:35 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-17.2 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_SOFTFAIL autolearn=ham version=3.3.1 spammy=HContent-Transfer-Encoding:8bit X-HELO: mail.baldwin.cx Received: from bigwig.baldwin.cx (HELO mail.baldwin.cx) (96.47.65.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Jul 2019 00:25:33 +0000 Received: from ralph.com (ralph.baldwin.cx [66.234.199.215]) by mail.baldwin.cx (Postfix) with ESMTPSA id A41BD10B768 for ; Mon, 15 Jul 2019 20:25:31 -0400 (EDT) From: John Baldwin To: gdb-patches@sourceware.org Subject: [PUSHED OBV] Add include of gdbarch.h. Date: Mon, 15 Jul 2019 17:23:41 -0700 Message-Id: <20190716002342.41815-1-jhb@FreeBSD.org> MIME-Version: 1.0 X-IsSubscribed: yes gdb/ChangeLog: * fbsd-nat.c: Include gdbarch.h. --- gdb/ChangeLog | 4 ++++ gdb/fbsd-nat.c | 1 + 2 files changed, 5 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bb2e8d133f..5e086ca15a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2019-07-16 John Baldwin + + * fbsd-nat.c: Include gdbarch.h. + 2019-07-15 Tom Tromey * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest. diff --git a/gdb/fbsd-nat.c b/gdb/fbsd-nat.c index b5be0b7a3d..5f121fc6f2 100644 --- a/gdb/fbsd-nat.c +++ b/gdb/fbsd-nat.c @@ -23,6 +23,7 @@ #include "inferior.h" #include "regcache.h" #include "regset.h" +#include "gdbarch.h" #include "gdbcmd.h" #include "gdbthread.h" #include "gdbsupport/gdb_wait.h"