mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-26 07:19:16 +08:00
Special case "&str" in Rust parser
"&str" is an important type in Rust -- it's the type of string literals. However, the compiler puts it in the DWARF in a funny way. The slice itself is present and named "&str". However, the Rust parser doesn't look for types with names like this, but instead tries to construct them from components. In this case it tries to make a pointer-to-"str" -- but "str" isn't always available, and in any case that wouldn't yield the best result. This patch adds a special case for &str. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=22251 Reviewed-By: Andrew Burgess <aburgess@redhat.com>
This commit is contained in:
@ -1682,6 +1682,16 @@ rust_parser::parse_slice_type ()
|
||||
{
|
||||
assume ('&');
|
||||
|
||||
/* Handle &str specially. This is an important type in Rust. While
|
||||
the compiler does emit the "&str" type in the DWARF, just "str"
|
||||
itself isn't always available -- but it's handy if this works
|
||||
seamlessly. */
|
||||
if (current_token == IDENT && get_string () == "str")
|
||||
{
|
||||
lex ();
|
||||
return rust_slice_type ("&str", get_type ("u8"), get_type ("usize"));
|
||||
}
|
||||
|
||||
bool is_slice = current_token == '[';
|
||||
if (is_slice)
|
||||
lex ();
|
||||
|
Reference in New Issue
Block a user