summaryrefslogtreecommitdiff
path: root/lib/msan/msan.cc
diff options
context:
space:
mode:
authorAlexey Samsonov <vonosmas@gmail.com>2014-10-26 06:23:07 +0000
committerAlexey Samsonov <vonosmas@gmail.com>2014-10-26 06:23:07 +0000
commite675b842de5208f0ec182aede6cc7c62923739db (patch)
treecf573fbefd30b7813d9056d840c34c2ac542ac71 /lib/msan/msan.cc
parent160815f9e699693889646c6abeadb78c338277fc (diff)
Change StackDepot interface to use StackTrace more extensively
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@220637 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/msan/msan.cc')
-rw-r--r--lib/msan/msan.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msan/msan.cc b/lib/msan/msan.cc
index ffd4a7521..f58ac447b 100644
--- a/lib/msan/msan.cc
+++ b/lib/msan/msan.cc
@@ -280,7 +280,7 @@ u32 ChainOrigin(u32 id, StackTrace *stack) {
}
}
- StackDepotHandle h = StackDepotPut_WithHandle(stack->trace, stack->size);
+ StackDepotHandle h = StackDepotPut_WithHandle(*stack);
if (!h.valid()) return id;
if (flags()->origin_history_per_stack_limit > 0) {