diff options
Diffstat (limited to 'compiler-rt/lib/msan')
| -rw-r--r-- | compiler-rt/lib/msan/msan.cc | 1 | ||||
| -rw-r--r-- | compiler-rt/lib/msan/msan_report.cc | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/lib/msan/msan.cc b/compiler-rt/lib/msan/msan.cc index 9238431543a..8d2c5ec9c9a 100644 --- a/compiler-rt/lib/msan/msan.cc +++ b/compiler-rt/lib/msan/msan.cc @@ -142,6 +142,7 @@ static void ParseFlagsFromString(Flags *f, const char *str) { static void InitializeFlags(Flags *f, const char *options) { CommonFlags *cf = common_flags(); cf->external_symbolizer_path = GetEnv("MSAN_SYMBOLIZER_PATH"); + cf->symbolize = true; cf->strip_path_prefix = ""; cf->fast_unwind_on_fatal = false; cf->fast_unwind_on_malloc = true; diff --git a/compiler-rt/lib/msan/msan_report.cc b/compiler-rt/lib/msan/msan_report.cc index c0765016074..a629304e601 100644 --- a/compiler-rt/lib/msan/msan_report.cc +++ b/compiler-rt/lib/msan/msan_report.cc @@ -36,7 +36,7 @@ class Decorator: private __sanitizer::AnsiColorDecorator { static void PrintStack(const uptr *trace, uptr size) { SymbolizerScope sym_scope; - StackTrace::PrintStack(trace, size, true, 0); + StackTrace::PrintStack(trace, size); Printf("\n"); } |

