From 1556cf7fe2d8e31ca9e80b8e6e9eea7fbf12314d Mon Sep 17 00:00:00 2001 From: yangcheng <28107329+yorange1@users.noreply.github.com> Date: Tue, 23 Aug 2022 05:05:19 +0800 Subject: Fix redundant loops when calculating vrgather.vi. (#1072) --- riscv/insns/vrgather_vi.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'riscv/insns/vrgather_vi.h') diff --git a/riscv/insns/vrgather_vi.h b/riscv/insns/vrgather_vi.h index 56e11e1..85ba621 100644 --- a/riscv/insns/vrgather_vi.h +++ b/riscv/insns/vrgather_vi.h @@ -7,10 +7,6 @@ require_vm; reg_t zimm5 = insn.v_zimm5(); VI_LOOP_BASE - -for (reg_t i = P.VU.vstart->read(); i < vl; ++i) { - VI_LOOP_ELEMENT_SKIP(); - switch (sew) { case e8: P.VU.elt(rd_num, i, true) = zimm5 >= P.VU.vlmax ? 0 : P.VU.elt(rs2_num, zimm5); @@ -25,6 +21,4 @@ for (reg_t i = P.VU.vstart->read(); i < vl; ++i) { P.VU.elt(rd_num, i, true) = zimm5 >= P.VU.vlmax ? 0 : P.VU.elt(rs2_num, zimm5); break; } -} - VI_LOOP_END; -- cgit v1.1