[PATCH] D137410: [AArch64] Add SME2.1 target feature for Armv9-A 2022 Architecture Extension
Paul Walker via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 4 06:34:14 PDT 2022
paulwalker-arm added inline comments.
================
Comment at: llvm/lib/Target/AArch64/AArch64InstrInfo.td:169
+ : Predicate<"Subtarget->hasSVE2p1() || Subtarget->hasSME2p1()">,
+ AssemblerPredicate<(any_of FeatureSME2p1, FeatureSVE2p1), "sme2p1 or sve2p1">;
// A subset of NEON instructions are legal in Streaming SVE execution mode,
----------------
Can this be `AssemblerPredicateWithAll`? Is this a convent time to fix the other SVE2p1 related instances where we erroneously use `AssemblerPredicate`?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D137410/new/
https://reviews.llvm.org/D137410
More information about the llvm-commits
mailing list