diagnostics: preserve compatibility with old objdump

This commit is contained in:
Patrick Mackinlay 2022-09-16 17:00:32 +07:00
parent 53693a8d72
commit 1aae44005b

View File

@ -507,7 +507,7 @@ bool symbol_manager::parse_sym_line(const char *line, uintptr_t &address, std::s
*/
// first look for a (ty) entry
const char *type = strstr(line, "(ty 20)");
const char *type = strstr(line, "(ty ");
if (type == nullptr)
return false;