summaryrefslogtreecommitdiff
path: root/lib/asan/asan_descriptions.cc
diff options
context:
space:
mode:
authorFilipe Cabecinhas <me@filcab.net>2016-08-17 09:24:33 +0000
committerFilipe Cabecinhas <me@filcab.net>2016-08-17 09:24:33 +0000
commitce3cbf6ea1fb8a9b4e7c7c33f7194acaeae0657b (patch)
tree6a84489457aeab4e9355b29563bec1278f522718 /lib/asan/asan_descriptions.cc
parent6ea77f0969dd6720fbb1175509e4c7f38c61728c (diff)
Deal with buildbot fallout from r278917: s/AllocType()/GetAllocType()/ (had the same name as the enum)
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@278919 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan/asan_descriptions.cc')
-rw-r--r--lib/asan/asan_descriptions.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asan/asan_descriptions.cc b/lib/asan/asan_descriptions.cc
index a909ff82d..34e829a21 100644
--- a/lib/asan/asan_descriptions.cc
+++ b/lib/asan/asan_descriptions.cc
@@ -121,7 +121,7 @@ static void GetAccessToHeapChunkInformation(ChunkAccess *descr,
}
descr->chunk_begin = chunk.Beg();
descr->chunk_size = chunk.UsedSize();
- descr->alloc_type = chunk.AllocType();
+ descr->alloc_type = chunk.GetAllocType();
}
static void PrintHeapChunkAccess(uptr addr, const ChunkAccess &descr) {