diagnostics: ignore all but type 0x20 symbols

This commit is contained in:
Patrick Mackinlay 2022-09-19 18:27:27 +07:00
parent f7445c878b
commit 0055a33e81

View File

@ -507,7 +507,10 @@ 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 ");
char *type = strstr(line, "(ty 20)");
if (type == nullptr)
type = strstr(line, "(ty 20)");
if (type == nullptr)
return false;