[clang] [NFC][analyzer] Remove empty alpha.security.cert checker category (PR #163606)
Endre Fülöp via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 15 11:14:28 PDT 2025
https://github.com/gamesh411 created https://github.com/llvm/llvm-project/pull/163606
None
>From 2dd3967d91533bd40a48f0a45e5cae898091c2b7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Endre=20F=C3=BCl=C3=B6p?= <endre.fulop at sigmatechnology.com>
Date: Wed, 15 Oct 2025 20:12:13 +0200
Subject: [PATCH] [NFC][analyzer] Remove empty alpha.security.cert checker
category
---
clang/docs/analyzer/checkers.rst | 6 ------
clang/include/clang/StaticAnalyzer/Checkers/Checkers.td | 3 ---
2 files changed, 9 deletions(-)
diff --git a/clang/docs/analyzer/checkers.rst b/clang/docs/analyzer/checkers.rst
index d942578dd7596..c9b8f0cde4d2a 100644
--- a/clang/docs/analyzer/checkers.rst
+++ b/clang/docs/analyzer/checkers.rst
@@ -3421,12 +3421,6 @@ Check for an out-of-bound pointer being returned to callers.
return x; // warn: undefined or garbage returned
}
-
-alpha.security.cert
-^^^^^^^^^^^^^^^^^^^
-
-SEI CERT checkers which tries to find errors based on their `C coding rules <https://wiki.sei.cmu.edu/confluence/display/c/2+Rules>`_.
-
alpha.unix
^^^^^^^^^^
diff --git a/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td b/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
index 4473c54d8d6e3..1848cf99a7c18 100644
--- a/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
+++ b/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
@@ -76,9 +76,6 @@ def SecurityAlpha : Package<"security">, ParentPackage<Alpha>;
def CERT : Package<"cert">, ParentPackage<Security>;
def ENV : Package<"env">, ParentPackage<CERT>;
-def CERTAlpha : Package<"cert">, ParentPackage<SecurityAlpha>;
-def POSAlpha : Package<"pos">, ParentPackage<CERTAlpha>;
-
def Unix : Package<"unix">;
def UnixAlpha : Package<"unix">, ParentPackage<Alpha>;
def CString : Package<"cstring">, ParentPackage<Unix>;
More information about the cfe-commits
mailing list