Index: clang/include/clang/StaticAnalyzer/Checkers/Checkers.td =================================================================== --- clang/include/clang/StaticAnalyzer/Checkers/Checkers.td +++ clang/include/clang/StaticAnalyzer/Checkers/Checkers.td @@ -703,6 +703,11 @@ HelpText<"Check for proper uses of Secure Keychain APIs">, Documentation; +def MIGChecker : Checker<"MIG">, + HelpText<"Find violations of the Mach Interface Generator " + "calling convention">, + Documentation; + def ObjCPropertyChecker : Checker<"ObjCProperty">, HelpText<"Check for proper uses of Objective-C properties">, Documentation; @@ -811,15 +816,6 @@ Documentation; } // end "optin.performance" -let ParentPackage = OSXAlpha in { - -def MIGChecker : Checker<"MIG">, - HelpText<"Find violations of the Mach Interface Generator " - "calling convention">, - Documentation; - -} // end "alpha.osx" - let ParentPackage = CocoaAlpha in { def IvarInvalidationModeling : Checker<"IvarInvalidationModeling">, Index: clang/test/Analysis/mig.mm =================================================================== --- clang/test/Analysis/mig.mm +++ clang/test/Analysis/mig.mm @@ -1,4 +1,4 @@ -// RUN: %clang_analyze_cc1 -w -analyzer-checker=core,alpha.osx.MIG\ +// RUN: %clang_analyze_cc1 -w -analyzer-checker=core,osx.MIG\ // RUN: -analyzer-output=text -fblocks -verify %s typedef unsigned uint32_t;