]> granicus.if.org Git - clang/commitdiff
Comment and cleanup.
authorAdrian Prantl <aprantl@apple.com>
Wed, 22 May 2013 21:37:49 +0000 (21:37 +0000)
committerAdrian Prantl <aprantl@apple.com>
Wed, 22 May 2013 21:37:49 +0000 (21:37 +0000)
rdar://problem/13359718

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182524 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGDebugInfo.cpp

index 8ef3749b2adfa4d1e1f8ae434c8cd845dbae4a55..ee0b8c984f9536e7bc72a13e87d94ed9b11f88a1 100644 (file)
@@ -2256,11 +2256,13 @@ llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl *D,
     SmallVector<llvm::Value *, 16> Elts;
 
     // First element is always return type. For 'void' functions it is NULL.
-    QualType ResultTy =
-      OMethod->getResultType() == CGM.getContext().getObjCInstanceType()
-      ? CGM.getContext().getPointerType(
-          QualType(OMethod->getClassInterface()->getTypeForDecl(), 0))
-      : OMethod->getResultType();
+    QualType ResultTy = OMethod->getResultType();
+
+    // Replace the instancetype keyword with the actual type.
+    if (ResultTy == CGM.getContext().getObjCInstanceType())
+      ResultTy = CGM.getContext().getPointerType(
+        QualType(OMethod->getClassInterface()->getTypeForDecl(), 0));
+
     Elts.push_back(getOrCreateType(ResultTy, F));
     // "self" pointer is always first argument.
     QualType SelfDeclTy = OMethod->getSelfDecl()->getType();