diff options
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index bd65e2b..2121fd3 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -32,6 +32,7 @@ #include "jit.h" #include "quick-symbol.h" #include <forward_list> +#include "gdbsupport/unordered_map.h" struct htab; struct objfile_data; @@ -857,7 +858,8 @@ public: Very few blocks have a static link, so it's more memory efficient to store these here rather than in struct block. Static links must be allocated on the objfile's obstack. */ - htab_up static_links; + gdb::unordered_map<const block *, const dynamic_prop *> + static_links; /* JIT-related data for this objfile, if the objfile is a JITer; that is, it produces JITed objfiles. */ |