[clang] [Clang][SME2] Add multi-vector add/sub builtins (PR #69725)
Sander de Smalen via cfe-commits
cfe-commits at lists.llvm.org
Fri Oct 27 06:51:55 PDT 2023
================
@@ -9571,22 +9571,17 @@ Value *CodeGenFunction::EmitSVEStructStore(const SVETypeFlags &TypeFlags,
Value *BasePtr = Ops[1];
// Does the store have an offset?
- if (Ops.size() > 3)
+ if (Ops.size() > (2 + N))
----------------
sdesmalen-arm wrote:
`EmitSVEStructStore` does not handle any more intrinsics. Should this be part of a different patch?
https://github.com/llvm/llvm-project/pull/69725
More information about the cfe-commits
mailing list