From: Edwin Lu Date: Thu, 1 Feb 2024 05:49:20 +0000 (-0800) Subject: Revert "RISC-V: Enable assert for insn_has_dfa_reservation" X-Git-Tag: basepoints/gcc-15~1463 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be697c0ab187466a0a76ef228055b591718e3e4d;p=thirdparty%2Fgcc.git Revert "RISC-V: Enable assert for insn_has_dfa_reservation" This reverts commit 23cd2961bd2ff63583f46e3499a07bd54491d45c. --- diff --git a/gcc/config/riscv/riscv.cc b/gcc/config/riscv/riscv.cc index b08a3e285349..529ef5e84b7b 100644 --- a/gcc/config/riscv/riscv.cc +++ b/gcc/config/riscv/riscv.cc @@ -8234,7 +8234,9 @@ riscv_sched_variable_issue (FILE *, int, rtx_insn *insn, int more) /* If we ever encounter an insn without an insn reservation, trip an assert so we can find and fix this problem. */ +#if 0 gcc_assert (insn_has_dfa_reservation_p (insn)); +#endif return more - 1; }