aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2007-11-09 00:43:55 +0000
committerTed Kremenek <kremenek@apple.com>2007-11-09 00:43:55 +0000
commit3b0eff8a12f7b3e48fa1022c3ce5a07ac03a85cd (patch)
treefa1820b07e3f9dfa42a1fcc1315ccb48e01b54a3
parent306d68f5ef2eab86e0e86ebadd5a6eee1f752c0b (diff)
Changed method call to reflect updated serialization API.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43917 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Basic/IdentifierTable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Basic/IdentifierTable.cpp b/Basic/IdentifierTable.cpp
index a69e65fe19..48fb086852 100644
--- a/Basic/IdentifierTable.cpp
+++ b/Basic/IdentifierTable.cpp
@@ -433,7 +433,7 @@ void IdentifierTable::Emit(llvm::Serializer& S) const {
}
IdentifierTable* IdentifierTable::Materialize(llvm::Deserializer& D) {
- llvm::Deserializer::Location BLoc = D.GetCurrentBlockLocation();
+ llvm::Deserializer::Location BLoc = D.getCurrentBlockLocation();
std::vector<char> buff;
buff.reserve(200);