diff options
author | Edwin Lu <ewlu@rivosinc.com> | 2024-01-31 21:49:20 -0800 |
---|---|---|
committer | Edwin Lu <ewlu@rivosinc.com> | 2024-01-31 21:49:20 -0800 |
commit | be697c0ab187466a0a76ef228055b591718e3e4d (patch) | |
tree | 061e017157c92a94a19c3e40c5511c69f84dc9e1 /gcc | |
parent | 23cd2961bd2ff63583f46e3499a07bd54491d45c (diff) | |
download | gcc-be697c0ab187466a0a76ef228055b591718e3e4d.zip gcc-be697c0ab187466a0a76ef228055b591718e3e4d.tar.gz gcc-be697c0ab187466a0a76ef228055b591718e3e4d.tar.bz2 |
Revert "RISC-V: Enable assert for insn_has_dfa_reservation"
This reverts commit 23cd2961bd2ff63583f46e3499a07bd54491d45c.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/riscv/riscv.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/riscv/riscv.cc b/gcc/config/riscv/riscv.cc index b08a3e2..529ef5e 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; } |