From ce3cbf6ea1fb8a9b4e7c7c33f7194acaeae0657b Mon Sep 17 00:00:00 2001 From: Filipe Cabecinhas Date: Wed, 17 Aug 2016 09:24:33 +0000 Subject: 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 --- lib/asan/asan_descriptions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/asan/asan_descriptions.cc') 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) { -- cgit v1.2.3