diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-04-13 21:57:08 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-04-13 21:57:08 +0000 |
commit | aa165cf75966e8b208943a5e912a8893206d8935 (patch) | |
tree | b267062fb06f5efaa84827f858d4fbdcd82639d8 /clang/lib/Serialization/Module.cpp | |
parent | 707e02c273f6a0286d023e4ecdac4a4ce0b84038 (diff) | |
download | bcm5719-llvm-aa165cf75966e8b208943a5e912a8893206d8935.tar.gz bcm5719-llvm-aa165cf75966e8b208943a5e912a8893206d8935.zip |
[modules] Remove CXX_CTOR_INITIALIZERS_OFFSETS table. Instead of storing an ID
of a table entry in the corresponding decl, store an offset from the current
record to the relevant CXX_CTOR_INITIALIZERS record. This results in fewer
indirections and a minor .pcm file size reduction.
llvm-svn: 266254
Diffstat (limited to 'clang/lib/Serialization/Module.cpp')
-rw-r--r-- | clang/lib/Serialization/Module.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Serialization/Module.cpp b/clang/lib/Serialization/Module.cpp index ca033b469b5..872a447429f 100644 --- a/clang/lib/Serialization/Module.cpp +++ b/clang/lib/Serialization/Module.cpp @@ -38,7 +38,6 @@ ModuleFile::ModuleFile(ModuleKind Kind, unsigned Generation) SelectorLookupTableData(nullptr), SelectorLookupTable(nullptr), LocalNumDecls(0), DeclOffsets(nullptr), BaseDeclID(0), LocalNumCXXBaseSpecifiers(0), CXXBaseSpecifiersOffsets(nullptr), - LocalNumCXXCtorInitializers(0), CXXCtorInitializersOffsets(nullptr), FileSortedDecls(nullptr), NumFileSortedDecls(0), ObjCCategoriesMap(nullptr), LocalNumObjCCategoriesInMap(0), LocalNumTypes(0), TypeOffsets(nullptr), BaseTypeIndex(0) |