Fix a silly typo in my previous objc_gc merging patch.

llvm-svn: 72723
This commit is contained in:
Eli Friedman 2009-06-02 07:45:37 +00:00
parent f6bd15038c
commit 5aa28de4fe
1 changed files with 1 additions and 1 deletions

View File

@ -3053,7 +3053,7 @@ QualType ASTContext::mergeTypes(QualType LHS, QualType RHS) {
Result = getObjCGCQualType(Result, GCAttr);
else if (Result.getObjCGCAttr() != GCAttr)
Result = QualType();
getObjCGCQualType(Result, GCAttr);
return Result;
}
}