We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fae453 commit dcd9f49Copy full SHA for dcd9f49
compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp
@@ -39,8 +39,12 @@ static bool FrameIsInternal(const SymbolizedStack *frame) {
39
internal_strstr(file, "/include/c++/") ||
40
internal_strstr(file, "/include/g++")))
41
return true;
42
+ if (file && internal_strstr(file, "\\compiler-rt\\lib\\"))
43
+ return true;
44
if (module && (internal_strstr(module, "libclang_rt.")))
45
46
+ if (module && (internal_strstr(module, "clang_rt.")))
47
48
return false;
49
}
50
0 commit comments