summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/lsan
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2013-10-04 08:55:03 +0000
committerAlexey Samsonov <samsonov@google.com>2013-10-04 08:55:03 +0000
commitf2b811a618c3c5048a343fd9ba04bc72c57e0033 (patch)
tree62ec7ce5bf645757c7dcd6d5aade3c0da762742b /compiler-rt/lib/lsan
parent843ff173e2de742744b3a939f5367456c64a7780 (diff)
downloadbcm5719-llvm-f2b811a618c3c5048a343fd9ba04bc72c57e0033.tar.gz
bcm5719-llvm-f2b811a618c3c5048a343fd9ba04bc72c57e0033.zip
Refactor the usage of strip_path_prefix option and make it more consistent across sanitizers
llvm-svn: 191943
Diffstat (limited to 'compiler-rt/lib/lsan')
-rw-r--r--compiler-rt/lib/lsan/lsan_common.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler-rt/lib/lsan/lsan_common.cc b/compiler-rt/lib/lsan/lsan_common.cc
index 7fa067522fe..416828ab8a2 100644
--- a/compiler-rt/lib/lsan/lsan_common.cc
+++ b/compiler-rt/lib/lsan/lsan_common.cc
@@ -283,8 +283,7 @@ static void PrintStackTraceById(u32 stack_trace_id) {
CHECK(stack_trace_id);
uptr size = 0;
const uptr *trace = StackDepotGet(stack_trace_id, &size);
- StackTrace::PrintStack(trace, size, common_flags()->symbolize,
- common_flags()->strip_path_prefix, 0);
+ StackTrace::PrintStack(trace, size, common_flags()->symbolize, 0);
}
// ForEachChunk callback. Aggregates unreachable chunks into a LeakReport.
OpenPOWER on IntegriCloud