Skip to content

Commit 3b1b1d7

Browse files
committed
Fix f6ee97d:
PrintAddress needs to be false (as it was before), or this breaks sanitizer backtraces.
1 parent a9a7498 commit 3b1b1d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ static llvm::symbolize::PrinterConfig getDefaultPrinterConfig() {
2828
Config.Pretty = false;
2929
Config.Verbose = false;
3030
Config.PrintFunctions = true;
31-
Config.PrintAddress = true;
31+
Config.PrintAddress = false;
3232
Config.SourceContextLines = 0;
3333
return Config;
3434
}

0 commit comments

Comments
 (0)