From 6018bc5e73de93250afad2cda4043a780dd4e6e9 Mon Sep 17 00:00:00 2001 From: naruse Date: Sun, 21 Oct 2018 16:37:24 +0000 Subject: Use inline function with stable code instead of macro git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65286 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- addr2line.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'addr2line.c') diff --git a/addr2line.c b/addr2line.c index c28bf8b459..3ab5c36f9b 100644 --- a/addr2line.c +++ b/addr2line.c @@ -159,9 +159,25 @@ typedef struct obj_info { struct dwarf_section debug_str; struct obj_info *next; } obj_info_t; -#define obj_dwarf_section_at(obj,n) (&obj->debug_abbrev + n) + #define DWARF_SECTION_COUNT 5 +static struct dwarf_section * +obj_dwarf_section_at(obj_info_t *obj, int n) +{ + struct dwarf_section *ary[] = { + &obj->debug_abbrev, + &obj->debug_info, + &obj->debug_line, + &obj->debug_ranges, + &obj->debug_str + }; + if (n < 0 || DWARF_SECTION_COUNT <= n) { + abort(); + } + return ary[n]; +} + struct debug_section_definition { const char *name; struct dwarf_section *dwarf; -- cgit v1.2.3