forked from OSchip/llvm-project
QualType deserialization now requires that the underlying pointer type
must be deserialized without requiring backpatching. llvm-svn: 43786
This commit is contained in:
parent
93d446f535
commit
7c91ccae88
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue