diff options
author | Alexey Samsonov <samsonov@google.com> | 2012-07-04 10:58:35 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2012-07-04 10:58:35 +0000 |
commit | 3ac4548c927a62aa470c00848fa723858cb48d2b (patch) | |
tree | 540a764c15ec7d549d246e0ff7d704d3175b4802 /compiler-rt/lib | |
parent | 314896c9fc42126a218003aed0fb659bef2722e1 (diff) | |
download | bcm5719-llvm-3ac4548c927a62aa470c00848fa723858cb48d2b.tar.gz bcm5719-llvm-3ac4548c927a62aa470c00848fa723858cb48d2b.zip |
[ASan] Minor fix in symbolizer output.
llvm-svn: 159709
Diffstat (limited to 'compiler-rt/lib')
-rw-r--r-- | compiler-rt/lib/asan/asan_stack.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_stack.cc b/compiler-rt/lib/asan/asan_stack.cc index 38677d9ba9d..b46c5f49cd8 100644 --- a/compiler-rt/lib/asan/asan_stack.cc +++ b/compiler-rt/lib/asan/asan_stack.cc @@ -55,7 +55,7 @@ void AsanStackTrace::PrintStack(uptr *addr, uptr size) { AddressInfo &info = addr_frames[j]; AsanPrintf(" #%zu 0x%zx", frame_num, pc); if (info.function) { - AsanPrintf(" %s", info.function); + AsanPrintf(" in %s", info.function); } if (info.file) { AsanPrintf(" %s:%d:%d", info.file, info.line, info.column); |