[clang] [Clang][attr] Add 'cfi_salt' attribute (PR #141846)
Erich Keane via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 4 12:42:21 PDT 2025
================
@@ -7941,6 +7942,32 @@ static bool handleFunctionTypeAttr(TypeProcessingState &state, ParsedAttr &attr,
return true;
}
+ if (attr.getKind() == ParsedAttr::AT_CFISalt) {
+ if (attr.getNumArgs() == 0)
----------------
erichkeane wrote:
The point of assertions is to assert-based-on your assumptions.
EITHER:
1- You're not assuming anything, thus this check should diagnose incorrect argument count.
2- This is a 'dead' branch, and should just be an assume.
https://github.com/llvm/llvm-project/pull/141846
More information about the cfe-commits
mailing list