зеркало из https://github.com/microsoft/clang-1.git
Implemented serialization for TypedefType.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43423 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
4340bfa9f4
Коммит
4f50ee3e6d
|
@ -203,3 +203,15 @@ FunctionTypeProto* FunctionTypeProto::Materialize(llvm::Deserializer& D) {
|
|||
|
||||
return FTP;
|
||||
}
|
||||
|
||||
void TypedefType::Emit(llvm::Serializer& S) const {
|
||||
EmitTypeInternal(S);
|
||||
S.EmitPtr(Decl);
|
||||
}
|
||||
|
||||
TypedefType* TypedefType::Materialize(llvm::Deserializer& D) {
|
||||
TypedefType* T = new TypedefType(NULL,QualType());
|
||||
T->ReadTypeInternal(D);
|
||||
D.ReadPtr(T->Decl);
|
||||
return T;
|
||||
}
|
||||
|
|
|
@ -823,6 +823,9 @@ public:
|
|||
|
||||
static bool classof(const Type *T) { return T->getTypeClass() == TypeName; }
|
||||
static bool classof(const TypedefType *) { return true; }
|
||||
|
||||
void Emit(llvm::Serializer& S) const;
|
||||
static TypedefType* Materialize(llvm::Deserializer& D);
|
||||
};
|
||||
|
||||
/// TypeOfExpr (GCC extension).
|
||||
|
|
Загрузка…
Ссылка в новой задаче