diff options
| author | Filipe Cabecinhas <me@filcab.net> | 2016-08-17 09:24:33 +0000 |
|---|---|---|
| committer | Filipe Cabecinhas <me@filcab.net> | 2016-08-17 09:24:33 +0000 |
| commit | 6b3f82dce2e4fe11a2214eb1e3142752413f63cb (patch) | |
| tree | 4985eb3de5afccf287d9ed75d000a68fb69b1848 /compiler-rt/lib/asan/asan_allocator.h | |
| parent | 3cc2f11f9028c4ba239b45e0f0bd1da182cf0743 (diff) | |
| download | bcm5719-llvm-6b3f82dce2e4fe11a2214eb1e3142752413f63cb.tar.gz bcm5719-llvm-6b3f82dce2e4fe11a2214eb1e3142752413f63cb.zip | |
Deal with buildbot fallout from r278917: s/AllocType()/GetAllocType()/ (had the same name as the enum)
llvm-svn: 278919
Diffstat (limited to 'compiler-rt/lib/asan/asan_allocator.h')
| -rw-r--r-- | compiler-rt/lib/asan/asan_allocator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_allocator.h b/compiler-rt/lib/asan/asan_allocator.h index 55bbbb52c94..19142fbde4c 100644 --- a/compiler-rt/lib/asan/asan_allocator.h +++ b/compiler-rt/lib/asan/asan_allocator.h @@ -62,7 +62,7 @@ class AsanChunkView { u32 GetFreeStackId(); StackTrace GetAllocStack(); StackTrace GetFreeStack(); - AllocType AllocType(); + AllocType GetAllocType(); bool AddrIsInside(uptr addr, uptr access_size, sptr *offset) { if (addr >= Beg() && (addr + access_size) <= End()) { *offset = addr - Beg(); |

