[clang] [Clang][SME] Detect always_inline used with mismatched streaming attributes (PR #77936)

Matthew Devereau via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 15 03:46:31 PST 2024


================
@@ -812,6 +819,23 @@ 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 CalleeIsStreaming =
----------------
MDevereau wrote:

nit: I think `bool` is better than `auto` here

https://github.com/llvm/llvm-project/pull/77936


More information about the cfe-commits mailing list