From c12cc9b85cd77830349b34218dbb9d760b058326 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Wed, 5 Sep 2018 01:27:48 +0000 Subject: [PATCH] [hwasan] fix colored output llvm-svn: 341440 --- compiler-rt/lib/hwasan/hwasan_report.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/lib/hwasan/hwasan_report.cc b/compiler-rt/lib/hwasan/hwasan_report.cc index bdc65fc..60eb5c1 100644 --- a/compiler-rt/lib/hwasan/hwasan_report.cc +++ b/compiler-rt/lib/hwasan/hwasan_report.cc @@ -135,6 +135,7 @@ void PrintAddressDescription(uptr tagged_addr, uptr access_size) { Printf("%s", d.Location()); Printf("Address %p is located in stack of thread T%zd\n", untagged_addr, t->unique_id()); + Printf("%s", d.Default()); t->Announce(); num_descriptions_printed++; -- 2.7.4