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.
This commit is contained in:
Tom Tromey 2020-04-24 15:35:01 -06:00 committed by Tom Tromey
parent 787de330ee
commit 8c87a4527f
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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...

View File

@ -975,6 +975,7 @@ general_symbol_info::natural_name () const
case language_go:
case language_objc:
case language_fortran:
case language_rust:
if (symbol_get_demangled_name (this) != NULL)
return symbol_get_demangled_name (this);
break;
@ -1000,6 +1001,7 @@ general_symbol_info::demangled_name () const
case language_go:
case language_objc:
case language_fortran:
case language_rust:
dem_name = symbol_get_demangled_name (this);
break;
case language_ada: