diff options
Diffstat (limited to 'Basic/IdentifierTable.cpp')
-rw-r--r-- | Basic/IdentifierTable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Basic/IdentifierTable.cpp b/Basic/IdentifierTable.cpp index 48fb086852..f7f008220f 100644 --- a/Basic/IdentifierTable.cpp +++ b/Basic/IdentifierTable.cpp @@ -415,8 +415,8 @@ void IdentifierTable::Emit(llvm::Serializer& S) const { const char* Key = I->getKeyData(); const IdentifierInfo* Info = &I->getValue(); - bool KeyRegistered = true; // FIXME: S.isRegistered(Key); - bool InfoRegistered = true; // FIXME: S.isRegistered(Info); + bool KeyRegistered = S.isRegistered(Key); + bool InfoRegistered = S.isRegistered(Info); if (KeyRegistered || InfoRegistered) { // These acrobatics are so that we don't incur the cost of registering |