]> granicus.if.org Git - clang/commitdiff
Remove call to isSEL and isSEL itself since the call is dead (isObjCObjectPointerType...
authorTed Kremenek <kremenek@apple.com>
Fri, 25 Jul 2008 18:17:35 +0000 (18:17 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 25 Jul 2008 18:17:35 +0000 (18:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54034 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/CheckObjCDealloc.cpp

index ba0eb6ac6a11f2997666b3f2d36f3d8df40c4598..39d1e05b944c460885c5ee2ff2aeff6059d81c07 100644 (file)
@@ -42,13 +42,6 @@ static bool scan_dealloc(Stmt* S, Selector Dealloc) {
   return false;
 }
 
-static bool isSEL(QualType T, IdentifierInfo* SelII) {
-  if (const TypedefType* Ty = T->getAsTypedefType())
-    return Ty->getDecl()->getIdentifier() == SelII;
-  
-  return false;
-}
-
 void clang::CheckObjCDealloc(ObjCImplementationDecl* D,
                              const LangOptions& LOpts, BugReporter& BR) {
 
@@ -63,7 +56,6 @@ void clang::CheckObjCDealloc(ObjCImplementationDecl* D,
   //        http://llvm.org/bugs/show_bug.cgi?id=2517
   
   bool containsPointerIvar = false;
-  IdentifierInfo* SelII = &Ctx.Idents.get("SEL");
   
   for (ObjCInterfaceDecl::ivar_iterator I=ID->ivar_begin(), E=ID->ivar_end();
        I!=E; ++I) {
@@ -72,8 +64,7 @@ void clang::CheckObjCDealloc(ObjCImplementationDecl* D,
     QualType T = ID->getType();
     
     if (!Ctx.isObjCObjectPointerType(T) ||
-        ID->getAttr<IBOutletAttr>() || // Skip IBOutlets.
-        isSEL(T, SelII)) // Skip SEL ivars.
+        ID->getAttr<IBOutletAttr>()) // Skip IBOutlets.
       continue;
     
     containsPointerIvar = true;