|
1 | 1 | ; REQUIRES: asserts |
2 | 2 | ; RUN: opt -passes=loop-vectorize -mtriple riscv64-linux-gnu \ |
3 | 3 | ; RUN: -mattr=+v,+d -debug-only=loop-vectorize,vplan --disable-output \ |
4 | | -; RUN: -riscv-v-vector-bits-min=128 -force-vector-width=1 \ |
| 4 | +; RUN: -force-vector-width=1 \ |
5 | 5 | ; RUN: -S < %s 2>&1 | FileCheck %s --check-prefix=CHECK-SCALAR |
6 | 6 | ; RUN: opt -passes=loop-vectorize -mtriple riscv64-linux-gnu \ |
7 | 7 | ; RUN: -mattr=+v,+d -debug-only=loop-vectorize,vplan --disable-output \ |
8 | | -; RUN: -riscv-v-vector-bits-min=128 -riscv-v-register-bit-width-lmul=1 \ |
| 8 | +; RUN: -riscv-v-register-bit-width-lmul=1 \ |
9 | 9 | ; RUN: -S < %s 2>&1 | FileCheck %s --check-prefix=CHECK-LMUL1 |
10 | 10 | ; RUN: opt -passes=loop-vectorize -mtriple riscv64-linux-gnu \ |
11 | 11 | ; RUN: -mattr=+v,+d -debug-only=loop-vectorize,vplan --disable-output \ |
12 | | -; RUN: -riscv-v-vector-bits-min=128 -riscv-v-register-bit-width-lmul=2 \ |
| 12 | +; RUN: -riscv-v-register-bit-width-lmul=2 \ |
13 | 13 | ; RUN: -S < %s 2>&1 | FileCheck %s --check-prefix=CHECK-LMUL2 |
14 | 14 | ; RUN: opt -passes=loop-vectorize -mtriple riscv64-linux-gnu \ |
15 | 15 | ; RUN: -mattr=+v,+d -debug-only=loop-vectorize,vplan --disable-output \ |
16 | | -; RUN: -riscv-v-vector-bits-min=128 -riscv-v-register-bit-width-lmul=4 \ |
| 16 | +; RUN: -riscv-v-register-bit-width-lmul=4 \ |
17 | 17 | ; RUN: -S < %s 2>&1 | FileCheck %s --check-prefix=CHECK-LMUL4 |
18 | 18 | ; RUN: opt -passes=loop-vectorize -mtriple riscv64-linux-gnu \ |
19 | 19 | ; RUN: -mattr=+v,+d -debug-only=loop-vectorize,vplan --disable-output \ |
20 | | -; RUN: -riscv-v-vector-bits-min=128 -riscv-v-register-bit-width-lmul=8 \ |
| 20 | +; RUN: -riscv-v-register-bit-width-lmul=8 \ |
21 | 21 | ; RUN: -S < %s 2>&1 | FileCheck %s --check-prefix=CHECK-LMUL8 |
22 | 22 |
|
23 | 23 | define void @add(ptr noalias nocapture readonly %src1, ptr noalias nocapture readonly %src2, i32 signext %size, ptr noalias nocapture writeonly %result) { |
|
0 commit comments