From patchwork Sun Mar 29 20:04:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 5885 Received: (qmail 80819 invoked by alias); 29 Mar 2015 20:04:41 -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 80806 invoked by uid 89); 29 Mar 2015 20:04:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: smtp.gentoo.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sun, 29 Mar 2015 20:04:39 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 47293340926; Sun, 29 Mar 2015 20:04:37 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Cc: dj@redhat.com, joel.sherrill@oarcorp.com Subject: [PATCH] sim: common: sim-arange: fix extern inline handling Date: Sun, 29 Mar 2015 16:04:34 -0400 Message-Id: <1427659474-4438-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes With newer versions of gcc (5.x), the extern inline we're using with the sim-arange module no longer works. Since this code really wants the gnu inline semantics, use that attribute explicitly. Committed. Reported-by: DJ Delorie Reported-by: Joel Sherrill --- sim/common/ChangeLog | 6 ++++++ sim/common/sim-arange.h | 20 ++++++++++++-------- sim/common/sim-inline.h | 4 +++- 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index e41203c..5336343 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,9 @@ +2015-03-29 Mike Frysinger + + * sim-arange.h (SIM_ARANGE_INLINE): Move above sim_addr_range_hit_p. + (sim_addr_range_hit_p): Change INLINE to SIM_ARANGE_INLINE. + * sim-inline.h (INLINE2): Define to gnu_inline when available. + 2015-03-24 Mike Frysinger * sim-profile.c (profile_pc_event): Get pc via sim_pc_get. Delete diff --git a/sim/common/sim-arange.h b/sim/common/sim-arange.h index 73117f3..de842c9 100644 --- a/sim/common/sim-arange.h +++ b/sim/common/sim-arange.h @@ -60,22 +60,26 @@ extern void sim_addr_range_delete (ADDR_RANGE * /*ar*/, address_word /*start*/, address_word /*end*/); +/* TODO: This should get moved into sim-inline.h. */ +#ifdef HAVE_INLINE +#ifdef SIM_ARANGE_C +#define SIM_ARANGE_INLINE INLINE +#else +#define SIM_ARANGE_INLINE EXTERN_INLINE +#endif +#else +#define SIM_ARANGE_INLINE EXTERN +#endif + /* Return non-zero if ADDR is in range AR, traversing the entire tree. If no range is specified, that is defined to mean "everything". */ -extern INLINE int +SIM_ARANGE_INLINE int sim_addr_range_hit_p (ADDR_RANGE * /*ar*/, address_word /*addr*/); #define ADDR_RANGE_HIT_P(ar, addr) \ ((ar)->range_tree == NULL || sim_addr_range_hit_p ((ar), (addr))) #ifdef HAVE_INLINE -#ifdef SIM_ARANGE_C -#define SIM_ARANGE_INLINE INLINE -#else -#define SIM_ARANGE_INLINE EXTERN_INLINE -#endif #include "sim-arange.c" -#else -#define SIM_ARANGE_INLINE #endif #define SIM_ARANGE_C_INCLUDED diff --git a/sim/common/sim-inline.h b/sim/common/sim-inline.h index af75562..8a9c286 100644 --- a/sim/common/sim-inline.h +++ b/sim/common/sim-inline.h @@ -303,7 +303,9 @@ /* ??? Temporary, pending decision to always use extern inline and do a vast cleanup of inline support. */ #ifndef INLINE2 -#if defined (__GNUC__) +#if defined (__GNUC_GNU_INLINE__) || defined (__GNUC_STDC_INLINE__) +#define INLINE2 __inline__ __attribute__ ((__gnu_inline__)) +#elif defined (__GNUC__) #define INLINE2 __inline__ #else #define INLINE2 /*inline*/