Fix a little typo that was killing de-serialization
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68354 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Basic/IdentifierTable.cpp b/lib/Basic/IdentifierTable.cpp
index f4acbec..c002b3f 100644
--- a/lib/Basic/IdentifierTable.cpp
+++ b/lib/Basic/IdentifierTable.cpp
@@ -481,7 +481,7 @@
IdentifierInfo *II = &t->get(&buff[0], &buff[0] + buff.size());
II->Read(D);
- if (InfoPtrID) D.RegisterRef(InfoPtrID, II);
+ if (InfoPtrID) D.RegisterPtr(InfoPtrID, II);
if (KeyPtrID) D.RegisterPtr(KeyPtrID, II->getName());
}