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:
Chris Lattner 2008-07-26 22:40:28 +00:00
parent d9fa5d6a23
commit 401cc23c4d
1 changed files with 1 additions and 1 deletions

View File

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