[cfe-commits] r43917 - /cfe/trunk/Basic/IdentifierTable.cpp

Ted Kremenek kremenek at apple.com
Thu Nov 8 16:43:55 PST 2007


Author: kremenek
Date: Thu Nov  8 18:43:55 2007
New Revision: 43917

URL: http://llvm.org/viewvc/llvm-project?rev=43917&view=rev
Log:
Changed method call to reflect updated serialization API.

Modified:
    cfe/trunk/Basic/IdentifierTable.cpp

Modified: cfe/trunk/Basic/IdentifierTable.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Basic/IdentifierTable.cpp?rev=43917&r1=43916&r2=43917&view=diff

==============================================================================
--- cfe/trunk/Basic/IdentifierTable.cpp (original)
+++ cfe/trunk/Basic/IdentifierTable.cpp Thu Nov  8 18:43:55 2007
@@ -433,7 +433,7 @@
 }
 
 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);





More information about the cfe-commits mailing list