QualType deserialization now requires that the underlying pointer type

must be deserialized without requiring backpatching.

llvm-svn: 43786
This commit is contained in:
Ted Kremenek 2007-11-06 22:23:53 +00:00
parent 93d446f535
commit 7c91ccae88
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}