From 5d1f2cc6449f489857d1468bc8ebc594515e718d Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Sat, 10 Nov 2007 19:19:32 +0000 Subject: [PATCH] Updated method signature to conform with the typedef in the method prototype. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43982 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Bitcode/Reader/Deserialize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Bitcode/Reader/Deserialize.cpp b/lib/Bitcode/Reader/Deserialize.cpp index 08ab02f698a..2e8b4ef08c4 100644 --- a/lib/Bitcode/Reader/Deserialize.cpp +++ b/lib/Bitcode/Reader/Deserialize.cpp @@ -324,7 +324,7 @@ void Deserializer::ReadCStr(std::vector& buff, bool isNullTerm) { buff.push_back('\0'); } -void Deserializer::RegisterPtr(unsigned PtrId, const void* Ptr) { +void Deserializer::RegisterPtr(SerializedPtrID PtrId, const void* Ptr) { MapTy::value_type& E = BPatchMap.FindAndConstruct(BPKey(PtrId)); assert (!HasFinalPtr(E) && "Pointer already registered.");