Author: Balázs Kéri Date: 2026-05-26T16:49:44+02:00 New Revision: bd9ce0ab1edd3c1e5557af8df883bac9b4c99150
URL: https://github.com/llvm/llvm-project/commit/bd9ce0ab1edd3c1e5557af8df883bac9b4c99150 DIFF: https://github.com/llvm/llvm-project/commit/bd9ce0ab1edd3c1e5557af8df883bac9b4c99150.diff LOG: [clang][analyzer] Make CallAndMessage:ArgPointeeInitializedness released (NFC) (#199184) The option was in `InAlpha` state but should be `Released` instead. It was improved in changes #164600 and #173854. Added: Modified: clang/include/clang/StaticAnalyzer/Checkers/Checkers.td Removed: ################################################################################ diff --git a/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td b/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td index 6b9e0b50e1f59..eca2afbe340a9 100644 --- a/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td +++ b/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td @@ -169,7 +169,7 @@ def CallAndMessageChecker CmdLineOption<Boolean, "ArgPointeeInitializedness", "Check whether the pointee of a pass-by-reference or " "pass-by-pointer is undefined", - "false", InAlpha>, + "false", Released>, CmdLineOption< Boolean, "NilReceiver", "Check whether the receiver in the message expression is nil", _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
