From 530b2d1d582d7cef7ab415570e72d1c0994307a9 Mon Sep 17 00:00:00 2001 From: Chih-Min Chao Date: Mon, 16 Sep 2019 00:33:43 -0700 Subject: rvv: fix floating-point exception for comparison don't use quiet api Signed-off-by: Chih-Min Chao --- riscv/insns/vmflt_vf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'riscv/insns/vmflt_vf.h') diff --git a/riscv/insns/vmflt_vf.h b/riscv/insns/vmflt_vf.h index af436e4..70847a1 100644 --- a/riscv/insns/vmflt_vf.h +++ b/riscv/insns/vmflt_vf.h @@ -1,5 +1,5 @@ // vflt.vf vd, vs2, rs1 VI_VFP_LOOP_CMP ({ - res = f32_lt_quiet(vs2, rs1); + res = f32_lt(vs2, rs1); }) -- cgit v1.1