From b9b7981f3d6919518372daf4c7e8c40dfc58f49d Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Sat, 6 May 2023 11:36:37 -0600 Subject: [PATCH] Remove duplicated definition in risc-v vector support. gcc/ * config/riscv/riscv-v.cc (autovec_use_vlmax_p): Remove duplicate definition. --- gcc/config/riscv/riscv-v.cc | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/gcc/config/riscv/riscv-v.cc b/gcc/config/riscv/riscv-v.cc index 6f8b4abf46dc..9d699d455b05 100644 --- a/gcc/config/riscv/riscv-v.cc +++ b/gcc/config/riscv/riscv-v.cc @@ -1015,17 +1015,6 @@ expand_tuple_move (machine_mode mask_mode, rtx *ops) } } -/* SCALABLE means that the vector-length is agnostic (run-time invariant and - compile-time unknown). FIXED meands that the vector-length is specific - (compile-time known). Both RVV_SCALABLE and RVV_FIXED_VLMAX are doing - auto-vectorization using VLMAX vsetvl configuration. */ -static bool -autovec_use_vlmax_p (void) -{ - return riscv_autovec_preference == RVV_SCALABLE - || riscv_autovec_preference == RVV_FIXED_VLMAX; -} - /* Return the vectorization machine mode for RVV according to LMUL. */ machine_mode preferred_simd_mode (scalar_mode mode) -- 2.47.2