summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bitcode/Reader
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2007-11-10 19:19:32 +0000
committerTed Kremenek <kremenek@apple.com>2007-11-10 19:19:32 +0000
commit195c478e1b4601c62f09c15d7974cd6e8f9ea059 (patch)
tree57f3114f46b94fee2758cdf9f4989a57b4edb80a /llvm/lib/Bitcode/Reader
parent68754c59bc864f0439fd967cc766833ad01d8bd5 (diff)
downloadbcm5719-llvm-195c478e1b4601c62f09c15d7974cd6e8f9ea059.tar.gz
bcm5719-llvm-195c478e1b4601c62f09c15d7974cd6e8f9ea059.zip
Updated method signature to conform with the typedef in the method prototype.
llvm-svn: 43982
Diffstat (limited to 'llvm/lib/Bitcode/Reader')
-rw-r--r--llvm/lib/Bitcode/Reader/Deserialize.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Reader/Deserialize.cpp b/llvm/lib/Bitcode/Reader/Deserialize.cpp
index 08ab02f698a..2e8b4ef08c4 100644
--- a/llvm/lib/Bitcode/Reader/Deserialize.cpp
+++ b/llvm/lib/Bitcode/Reader/Deserialize.cpp
@@ -324,7 +324,7 @@ void Deserializer::ReadCStr(std::vector<char>& 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.");
OpenPOWER on IntegriCloud