[clang] [clang][CodeGen][X86_64] Honor per-function AVX ABI in C/C++ call paths, maintain old psABI for PlayStation. (PR #193298)
Eli Friedman via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 15 18:02:15 PDT 2026
================
@@ -800,8 +838,17 @@ const CGFunctionInfo &CodeGenTypes::arrangeNullaryFunction() {
const CGFunctionInfo &CodeGenTypes::arrangeCall(const CGFunctionInfo &signature,
const CallArgList &args) {
+ return arrangeCall(signature, args, /*FD=*/nullptr);
----------------
efriedma-quic wrote:
Please don't add silently broken methods; please update all the callers. (And add a FIXME to CGObjCRuntime if necessary.)
https://github.com/llvm/llvm-project/pull/193298
More information about the cfe-commits
mailing list