From 31354ca624767ab7a5c17c25e7af125361d2848e Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Tue, 6 Nov 2007 22:23:53 +0000 Subject: [PATCH] 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 --- AST/TypeSerialization.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.50.1