diff options
| author | Alexey Samsonov <samsonov@google.com> | 2013-10-04 08:55:03 +0000 |
|---|---|---|
| committer | Alexey Samsonov <samsonov@google.com> | 2013-10-04 08:55:03 +0000 |
| commit | f2b811a618c3c5048a343fd9ba04bc72c57e0033 (patch) | |
| tree | 62ec7ce5bf645757c7dcd6d5aade3c0da762742b /compiler-rt/lib/asan/asan_stack.cc | |
| parent | 843ff173e2de742744b3a939f5367456c64a7780 (diff) | |
| download | bcm5719-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/asan/asan_stack.cc')
| -rw-r--r-- | compiler-rt/lib/asan/asan_stack.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/asan/asan_stack.cc b/compiler-rt/lib/asan/asan_stack.cc index 06f48eaef37..ca75f630d64 100644 --- a/compiler-rt/lib/asan/asan_stack.cc +++ b/compiler-rt/lib/asan/asan_stack.cc @@ -25,8 +25,8 @@ static bool MaybeCallAsanSymbolize(const void *pc, char *out_buffer, } void PrintStack(StackTrace *stack) { - stack->PrintStack(stack->trace, stack->size, common_flags()->symbolize, - common_flags()->strip_path_prefix, MaybeCallAsanSymbolize); + StackTrace::PrintStack(stack->trace, stack->size, common_flags()->symbolize, + MaybeCallAsanSymbolize); } } // namespace __asan |

