Skip to content

Commit

Permalink
[RISCV] Fix test that was still using __RISCV_RVV_VLEN_BITS. NFC
Browse files Browse the repository at this point in the history
This constant was renamed to __riscv_v_fixed_vlen during code
review. I missed this in my search and replace.
  • Loading branch information
topperc committed May 18, 2023
1 parent 9698265 commit e8b15c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/test/Sema/attr-riscv-rvv-vector-bits.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ TEST_CALL(float64m1)
// --------------------------------------------------------------------------//
// Vector initialization

#if __RISCV_RVV_VLEN_BITS == 256
#if __riscv_v_fixed_vlen == 256

typedef vint32m1_t int32x8 __attribute__((riscv_rvv_vector_bits(__riscv_v_fixed_vlen)));
typedef vfloat64m1_t float64x4 __attribute__((riscv_rvv_vector_bits(__riscv_v_fixed_vlen)));
Expand Down

0 comments on commit e8b15c4

Please sign in to comment.