[clang] [llvm] [Clang][SME] Detect always_inline used with mismatched streaming attributes (PR #77936)
Sander de Smalen via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 19 07:25:43 PST 2024
================
@@ -814,6 +821,42 @@ Address AArch64ABIInfo::EmitMSVAArg(CodeGenFunction &CGF, Address VAListAddr,
/*allowHigherAlign*/ false);
}
+void AArch64TargetCodeGenInfo::checkFunctionCallABI(
+ CodeGenModule &CGM, SourceLocation CallLoc, const FunctionDecl *Caller,
+ const FunctionDecl *Callee, const CallArgList &Args) const {
+ if (!Callee->hasAttr<AlwaysInlineAttr>())
+ return;
+
+ auto GetSMEAttrs = [](const FunctionDecl *F) {
----------------
sdesmalen-arm wrote:
nit:
```suggestion
auto GetSMEAttrs = [](const FunctionDecl *F) -> llvm::SMEAttrs {
```
https://github.com/llvm/llvm-project/pull/77936
More information about the cfe-commits
mailing list