aboutsummaryrefslogtreecommitdiff
path: root/lib/Lex/Preprocessor.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2011-07-27 18:41:23 +0000
committerTed Kremenek <kremenek@apple.com>2011-07-27 18:41:23 +0000
commit67485096e1211567a01128276bc132aefacba053 (patch)
treeaa0126fb3c16e30c862f4273a675c531b5ae7d3c /lib/Lex/Preprocessor.cpp
parente3c20a8cf8b5fdbd88c416a25452179a5a9f3b56 (diff)
Change Preprocessor::getTotalMemory() to use llvm::capacity_in_bytes().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136239 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r--lib/Lex/Preprocessor.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp
index 4431684216..24d36cdb25 100644
--- a/lib/Lex/Preprocessor.cpp
+++ b/lib/Lex/Preprocessor.cpp
@@ -42,6 +42,7 @@
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/raw_ostream.h"
+#include "llvm/Support/Capacity.h"
using namespace clang;
//===----------------------------------------------------------------------===//
@@ -229,12 +230,12 @@ Preprocessor::macro_begin(bool IncludeExternalMacros) const {
size_t Preprocessor::getTotalMemory() const {
return BP.getTotalMemory()
- + MacroExpandedTokens.capacity()
+ + llvm::capacity_in_bytes(MacroExpandedTokens)
+ Predefines.capacity() /* Predefines buffer. */
- + Macros.getMemorySize()
- + PragmaPushMacroInfo.getMemorySize()
- + PoisonReasons.getMemorySize()
- + CommentHandlers.capacity();
+ + llvm::capacity_in_bytes(Macros)
+ + llvm::capacity_in_bytes(PragmaPushMacroInfo)
+ + llvm::capacity_in_bytes(PoisonReasons)
+ + llvm::capacity_in_bytes(CommentHandlers);
}
Preprocessor::macro_iterator