[clang] [llvm] [AArch64][SME] Split FP8 FTMOPA intrinsics (PR #203310)
Paul Walker via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 12 09:18:19 PDT 2026
================
@@ -970,6 +970,21 @@ static bool upgradeArmOrAarch64IntrinsicFunction(bool IsArm, Function *F,
}
} else {
// 'aarch64.*'.
+ if (Name.consume_front("sme.ftmopa.")) {
+ // The FP8 FTMOPA intrinsics were split out from the non-FP8 FTMOPA
----------------
paulwalker-arm wrote:
To aid future extension please can you add an `if (Name.consume_front("sme."))` block after the SVE one and then move this code inside it?
https://github.com/llvm/llvm-project/pull/203310
More information about the cfe-commits
mailing list