This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: why is sim_addr_range_hit_p tagged inline?


DJ Delorie <dj@redhat.com> writes:

> In sim/sim-arange.h:
>
>   /* 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_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)))
>
> Why is the INLINE there?  sim_addr_range_hit_p() is only defined in
> sim-arange.c

Unless HAVE_INLINE is defined.

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]