From 2aceecc1525989cc0a9786aac706fa959676c23e Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 11 Nov 2012 18:20:11 +0100 Subject: [PATCH] debugedit: Recognize .debug_macro section. --- tools/debugedit.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/debugedit.c b/tools/debugedit.c index 320d8e170..2805a240e 100644 --- a/tools/debugedit.c +++ b/tools/debugedit.c @@ -251,6 +251,7 @@ static struct #define DEBUG_FRAME 9 #define DEBUG_RANGES 10 #define DEBUG_TYPES 11 +#define DEBUG_MACRO 12 { ".debug_info", NULL, NULL, 0, 0, 0 }, { ".debug_abbrev", NULL, NULL, 0, 0, 0 }, { ".debug_line", NULL, NULL, 0, 0, 0 }, @@ -263,6 +264,7 @@ static struct { ".debug_frame", NULL, NULL, 0, 0, 0 }, { ".debug_ranges", NULL, NULL, 0, 0, 0 }, { ".debug_types", NULL, NULL, 0, 0, 0 }, + { ".debug_macro", NULL, NULL, 0, 0, 0 }, { NULL, NULL, NULL, 0, 0, 0 } }; -- 2.39.5