From aeed45cde02a94d2db66a617588d63f778aa6026 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 21 Nov 2012 11:44:20 +0000 Subject: [PATCH] tsan: explictly say when we fail to restore a stack trace llvm-svn: 168423 --- compiler-rt/lib/tsan/rtl/tsan_report.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compiler-rt/lib/tsan/rtl/tsan_report.cc b/compiler-rt/lib/tsan/rtl/tsan_report.cc index b3ed87e..21f1c1e 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_report.cc +++ b/compiler-rt/lib/tsan/rtl/tsan_report.cc @@ -50,6 +50,10 @@ static void PrintHeader(ReportType typ) { } void PrintStack(const ReportStack *ent) { + if (ent == 0) { + Printf(" [failed to restore the stack]\n"); + return; + } for (int i = 0; ent; ent = ent->next, i++) { Printf(" #%d %s %s:%d", i, ent->func, ent->file, ent->line); if (ent->col) -- 2.7.4