From 349642f32014f2566e5840782903ff5c1bd31fc4 Mon Sep 17 00:00:00 2001 From: Erich Keane Date: Fri, 22 Jun 2018 17:34:44 +0000 Subject: [PATCH] [NFC] Fix AttributeList allocated_size for ParsedType. This if/elseif structure seems to be missing this case. Previously, this would report a size of 1 pointer too small. This didn't really change anything besides failing to reclaim a very small amount of memory. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@335372 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/AttributeList.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Sema/AttributeList.cpp b/lib/Sema/AttributeList.cpp index bdb91c7e39..4cd32b361d 100644 --- a/lib/Sema/AttributeList.cpp +++ b/lib/Sema/AttributeList.cpp @@ -40,6 +40,8 @@ size_t AttributeList::allocated_size() const { return AttributeFactory::TypeTagForDatatypeAllocSize; else if (IsProperty) return AttributeFactory::PropertyAllocSize; + else if (HasParsedType) + return sizeof(AttributeList) + sizeof(void *); return (sizeof(AttributeList) + NumArgs * sizeof(ArgsUnion)); } -- 2.40.0