[llvm] [RISCV] Support interleaved accesses for scalable vector. (PR #90583)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Wed May 1 23:36:08 PDT 2024
================
@@ -1,54 +1,113 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
-; RUN: opt < %s -passes=loop-vectorize -mtriple=riscv64 -mattr=+v -S | FileCheck %s
+; RUN: opt < %s -passes=loop-vectorize -scalable-vectorization=off -mtriple=riscv64 -mattr=+v -S | FileCheck %s --check-prefix=FIXED
+; RUN: opt < %s -passes=loop-vectorize -scalable-vectorization=on -mtriple=riscv64 -mattr=+v -S | FileCheck %s --check-prefix=SCALABLE
----------------
lukel97 wrote:
Can we have a run line without the `-scalable-vectorization` flag so we can see what the default is?
https://github.com/llvm/llvm-project/pull/90583
More information about the llvm-commits
mailing list