From 401cc23c4dd244711be84280d83151e631e1975a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 26 Jul 2008 22:40:28 +0000 Subject: [PATCH] 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 --- clang/lib/AST/TypeSerialization.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/AST/TypeSerialization.cpp b/clang/lib/AST/TypeSerialization.cpp index ff86d82f2668..00b71b65b5fb 100644 --- a/clang/lib/AST/TypeSerialization.cpp +++ b/clang/lib/AST/TypeSerialization.cpp @@ -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); }