aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2007-11-06 22:23:53 +0000
committerTed Kremenek <kremenek@apple.com>2007-11-06 22:23:53 +0000
commit31354ca624767ab7a5c17c25e7af125361d2848e (patch)
tree3117a26efa820dd7f4fd3e057c75544be4103641
parente00e28fae224a0c483ffdef57fa088fbb520ed38 (diff)
QualType deserialization now requires that the underlying pointer type
must be deserialized without requiring backpatching. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43786 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--AST/TypeSerialization.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/AST/TypeSerialization.cpp b/AST/TypeSerialization.cpp
index 92dff502d4..878b80688d 100644
--- a/AST/TypeSerialization.cpp
+++ b/AST/TypeSerialization.cpp
@@ -24,7 +24,7 @@ void QualType::Emit(llvm::Serializer& S) const {
}
void QualType::Read(llvm::Deserializer& D) {
- D.ReadUIntPtr(ThePtr);
+ D.ReadUIntPtr(ThePtr,false);
ThePtr |= D.ReadInt();
}