From c1e85b6c1b4d83d24b130b191112e1b99cf74a8a Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Tue, 29 Dec 2020 12:26:57 -0500 Subject: [PATCH] =?utf8?q?sanitizer:=20fix=20typo/spelling:=20Dissassemble?= =?utf8?q?=20=E2=86=92=20Disassemble?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Differential Revision: https://reviews.llvm.org/D93902 --- compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp index 06301b8..c99a6ce 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp +++ b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp @@ -211,7 +211,7 @@ static void ReportDeadlySignalImpl(const SignalContext &sig, u32 tid, Report("The signal is caused by a %s memory access.\n", access_type); if (!sig.is_true_faulting_addr) Report("Hint: this fault was caused by a dereference of a high value " - "address (see register values below). Dissassemble the provided " + "address (see register values below). Disassemble the provided " "pc to learn which register was used.\n"); else if (sig.addr < GetPageSizeCached()) Report("Hint: address points to the zero page.\n"); -- 2.7.4