diff options
author | Tom de Vries <tdevries@suse.de> | 2021-06-12 10:58:32 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2021-06-24 17:44:35 +0200 |
commit | bdd77e320042952784b66353adade878a97df62b (patch) | |
tree | d5966545f55697841c22a4cdbe318f53a3515f9b | |
parent | 744ed1ee391fa604fe9eb854f5ca25120061c832 (diff) | |
download | binutils-bdd77e320042952784b66353adade878a97df62b.zip binutils-bdd77e320042952784b66353adade878a97df62b.tar.gz binutils-bdd77e320042952784b66353adade878a97df62b.tar.bz2 |
[gdb/symtab] Set lazy_expand_symtab_p to true
Enable lazy symtab expansion by default.
Should be the last patch, but moved earlier to make development
easier.
-rw-r--r-- | gdb/psymtab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/psymtab.c b/gdb/psymtab.c index 7efc562..e395a10 100644 --- a/gdb/psymtab.c +++ b/gdb/psymtab.c @@ -37,7 +37,7 @@ #include <algorithm> #include <set> -bool lazy_expand_symtab_p = false; +bool lazy_expand_symtab_p = true; static struct partial_symbol *lookup_partial_symbol (struct objfile *, struct partial_symtab *, |