forked from Imagelibrary/binutils-gdb
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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user