forked from OSchip/llvm-project
Comment out the last call to QualType::getCanonicalType. This *breaks*
Serialization/stmt_exprs.c, but I don't know the right solution. Will fix when I get a chance to talk to Ted about it. llvm-svn: 54109
This commit is contained in:
parent
d9fa5d6a23
commit
401cc23c4d
|
@ -239,7 +239,7 @@ Type* TagType::CreateImpl(ASTContext& Context, Deserializer& D) {
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
void TypedefType::EmitImpl(Serializer& S) const {
|
||||
S.Emit(QualType((Type*)this,0).getCanonicalType());
|
||||
S.Emit(QualType((Type*)this,0)/*.getCanonicalType()*/);
|
||||
S.EmitPtr(Decl);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue