diff options
author | Steiner H Gunderson <steinar+sourceware@gunderson.no> | 2022-03-21 14:29:12 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2022-03-21 14:29:12 +0000 |
commit | 30cbd32aec30b4bc13427bbd87c4c63c739d4578 (patch) | |
tree | 8dbe289e2e45bc6ecf2f0ed476f847dea656d34f /bfd/ChangeLog | |
parent | 46fb6d5aa27d7129f472729a4f7ab8aa103aa674 (diff) | |
download | gdb-30cbd32aec30b4bc13427bbd87c4c63c739d4578.zip gdb-30cbd32aec30b4bc13427bbd87c4c63c739d4578.tar.gz gdb-30cbd32aec30b4bc13427bbd87c4c63c739d4578.tar.bz2 |
Reduce O(n2) performance overhead when parsing DWARF unit information.
PR 28978
* dwarf2.c (scan_unit_for_symbols): When performing second pass,
check to see if the function or variable being processed is the
same as the previous one.
Diffstat (limited to 'bfd/ChangeLog')
-rw-r--r-- | bfd/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 6ac8b96..fcf5aba 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,10 @@ +2022-03-21 Steiner H Gunderson <steinar+sourceware@gunderson.no> + + PR 28978 + * dwarf2.c (scan_unit_for_symbols): When performing second pass, + check to see if the function or variable being processed is the + same as the previous one. + 2022-03-18 Viorel Preoteasa <viorel.preoteasa@gmail.com> PR 28924 |