diff options
| author | Alexey Samsonov <samsonov@google.com> | 2012-06-07 06:15:12 +0000 |
|---|---|---|
| committer | Alexey Samsonov <samsonov@google.com> | 2012-06-07 06:15:12 +0000 |
| commit | 28a9895ee096a3524f2e75827e7b5a7b01699627 (patch) | |
| tree | b823e51c7619941ea3c3d87735f80a2b1d99edcd /compiler-rt/lib/asan/asan_stack.cc | |
| parent | fe44fbd7506e88090c975b1162c11097e396733f (diff) | |
| download | bcm5719-llvm-28a9895ee096a3524f2e75827e7b5a7b01699627.tar.gz bcm5719-llvm-28a9895ee096a3524f2e75827e7b5a7b01699627.zip | |
[Sanitizer] __asan::AsanProcMaps -> __sanitizer::ProcessMaps.
llvm-svn: 158139
Diffstat (limited to 'compiler-rt/lib/asan/asan_stack.cc')
| -rw-r--r-- | compiler-rt/lib/asan/asan_stack.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_stack.cc b/compiler-rt/lib/asan/asan_stack.cc index 45d30c18362..25f69d651b6 100644 --- a/compiler-rt/lib/asan/asan_stack.cc +++ b/compiler-rt/lib/asan/asan_stack.cc @@ -17,6 +17,7 @@ #include "asan_stack.h" #include "asan_thread.h" #include "asan_thread_registry.h" +#include "sanitizer_common/sanitizer_procmaps.h" #include "sanitizer_common/sanitizer_symbolizer.h" #ifdef ASAN_USE_EXTERNAL_SYMBOLIZER @@ -39,7 +40,7 @@ void AsanStackTrace::PrintStack(uptr *addr, uptr size) { #else // ASAN_USE_EXTERNAL_SYMBOLIZER void AsanStackTrace::PrintStack(uptr *addr, uptr size) { - AsanProcMaps proc_maps; + ProcessMaps proc_maps; uptr frame_num = 0; for (uptr i = 0; i < size && addr[i]; i++) { proc_maps.Reset(); |

