diff options
author | Tom Tromey <tom@tromey.com> | 2020-04-24 15:35:01 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2020-04-24 15:35:02 -0600 |
commit | 8c87a4527f5102b124ad0128894b1195d80eef73 (patch) | |
tree | 4fded124417a1e193d6eaeae241d5d94e66f4530 /gdb/ChangeLog | |
parent | 787de330ee1471389cad1975eae65e566ad00448 (diff) | |
download | gdb-8c87a4527f5102b124ad0128894b1195d80eef73.zip gdb-8c87a4527f5102b124ad0128894b1195d80eef73.tar.gz gdb-8c87a4527f5102b124ad0128894b1195d80eef73.tar.bz2 |
Fix two latent Rust bugs
Two methods on general_symbol_info did not handle the language_rust
case. I don't think these problems can be noticed with the current
code (which is why the bugs went unnoticed), but a future patch will
change this.
gdb/ChangeLog
2020-04-24 Tom Tromey <tom@tromey.com>
* symtab.c (general_symbol_info::natural_name)
(general_symbol_info::demangled_name): Check for language_rust.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6122e31..6a8d82f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2020-04-24 Tom Tromey <tom@tromey.com> + * symtab.c (general_symbol_info::natural_name) + (general_symbol_info::demangled_name): Check for language_rust. + +2020-04-24 Tom Tromey <tom@tromey.com> + * dwarf2/read.c (dw2_linkage_name): Move Rust "{" hack here... (dwarf2_physname): ... from here. (partial_die_info::read): Add Rust "{" hack. |