[llvm] [AArch64] Make use of byte FPR stores for bytes extracted from vectors (PR #134117)

Benjamin Maxwell via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 4 06:29:44 PDT 2025


================
@@ -3208,6 +3208,8 @@ let Predicates = [HasSVE_or_SME] in {
   // Insert scalar into undef[0]
   def : Pat<(nxv16i8 (vector_insert (nxv16i8 (undef)), (i32 FPR32:$src), 0)),
             (INSERT_SUBREG (nxv16i8 (IMPLICIT_DEF)), FPR32:$src, ssub)>;
+  def : Pat<(nxv16i8 (vector_insert (nxv16i8 (undef)), (i64 FPR64:$src), 0)),
----------------
MacDue wrote:

My bad, this pattern is not needed anymore (it's a leftover from some earlier experimentation with the combine). 

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


More information about the llvm-commits mailing list