diff options
author | Tom de Vries <tdevries@suse.de> | 2021-06-18 12:11:55 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2021-06-24 17:44:35 +0200 |
commit | 560671a154d21c7982c039b98576a9d287e7665f (patch) | |
tree | 34362bcce1539aa23666e5307cdc4d201459afe4 | |
parent | bdd77e320042952784b66353adade878a97df62b (diff) | |
download | binutils-560671a154d21c7982c039b98576a9d287e7665f.zip binutils-560671a154d21c7982c039b98576a9d287e7665f.tar.gz binutils-560671a154d21c7982c039b98576a9d287e7665f.tar.bz2 |
[gdb/symtab] Declare lazy_expand_symtab_p
Declare lazy_expand_symtab_p.
Declare directly in .c file(s) instead of header file for now, to speed up
rebuilding.
-rw-r--r-- | gdb/dwarf2/read.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index 16103e6..435e2ff 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -90,6 +90,8 @@ #include "count-one-bits.h" #include <unordered_set> +extern bool lazy_expand_symtab_p; + /* When == 1, print basic high level tracing messages. When > 1, be more verbose. This is in contrast to the low level DIE reading of dwarf_die_debug. */ |