commit | 430d9f10d954eb0df739a38ff0659fccb2bd7ca9 | [log] [tgz] |
---|---|---|
author | Eli Friedman <eli.friedman@gmail.com> | Tue Jun 02 07:45:37 2009 +0000 |
committer | Eli Friedman <eli.friedman@gmail.com> | Tue Jun 02 07:45:37 2009 +0000 |
tree | 5312201c01229e7a4ef8d5936e0d73ced39e2f9d | |
parent | 5dbe17e17e36ee4bf9fda2f22d4ebdc8be303bbd [diff] [blame] |
Fix a silly typo in my previous objc_gc merging patch. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72723 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index 6a7113c..29bca29 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp
@@ -3053,7 +3053,7 @@ Result = getObjCGCQualType(Result, GCAttr); else if (Result.getObjCGCAttr() != GCAttr) Result = QualType(); - getObjCGCQualType(Result, GCAttr); + return Result; } }