File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -42,8 +42,9 @@ static const char* replace_addr_expr(const char* str)
42
42
std::basic_string<char > tmp1 = std::regex_replace (str, std::regex (" 0x[0-9a-fA-F]+" ), " <addr>" );
43
43
// Padding: aarch64
44
44
std::basic_string<char > tmp2 = std::regex_replace (tmp1, std::regex (" \\ s+<addr>:\\ s+\\ .inst\\ t<addr> ; undefined" ), " " );
45
+ std::basic_string<char > tmp3 = std::regex_replace (tmp2, std::regex (" \\ s+<addr>:\\ s+udf\\ t#0" ), " " );
45
46
// Padding: x64
46
- std::basic_string<char > red = std::regex_replace (tmp2 , std::regex (" \\ s+<addr>:\\ s+hlt[ \\ t]+(?!\\ n\\ s+;;)" ), " " );
47
+ std::basic_string<char > red = std::regex_replace (tmp3 , std::regex (" \\ s+<addr>:\\ s+hlt[ \\ t]+(?!\\ n\\ s+;;)" ), " " );
47
48
48
49
return os::strdup (red.c_str ());
49
50
}
You can’t perform that action at this time.
0 commit comments