aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Serialization/GlobalModuleIndex.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2013-01-28 18:29:39 +0000
committerDouglas Gregor <dgregor@apple.com>2013-01-28 18:29:39 +0000
commit0637c6926ddcbe6391d93dbd4b842faabcc72c23 (patch)
treebaab3aaec2870ea8ffce56701d68887f578ba5d1 /clang/lib/Serialization/GlobalModuleIndex.cpp
parenta3ecd32bbf0cb7d5e6d85cbd0c2cc282fe9848ab (diff)
downloadllvm-0637c6926ddcbe6391d93dbd4b842faabcc72c23.zip
llvm-0637c6926ddcbe6391d93dbd4b842faabcc72c23.tar.gz
llvm-0637c6926ddcbe6391d93dbd4b842faabcc72c23.tar.bz2
ASTReader and profiling statistics indicate that implementing a method
pool in the global module index is not worthwhile. Update comments to limit the scope of the global module index to identifiers. llvm-svn: 173705
Diffstat (limited to 'clang/lib/Serialization/GlobalModuleIndex.cpp')
-rw-r--r--clang/lib/Serialization/GlobalModuleIndex.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Serialization/GlobalModuleIndex.cpp b/clang/lib/Serialization/GlobalModuleIndex.cpp
index b778a72..72165bc 100644
--- a/clang/lib/Serialization/GlobalModuleIndex.cpp
+++ b/clang/lib/Serialization/GlobalModuleIndex.cpp
@@ -665,8 +665,6 @@ bool GlobalModuleIndexBuilder::loadModuleFile(const FileEntry *File) {
}
}
- // FIXME: Handle the selector table.
-
// We don't care about this record.
}
@@ -786,8 +784,6 @@ void GlobalModuleIndexBuilder::writeIndex(llvm::BitstreamWriter &Stream) {
Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable.str());
}
- // FIXME: Selectors.
-
Stream.ExitBlock();
}