aboutsummaryrefslogtreecommitdiff
path: root/riscv/rocc.cc
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2022-05-12 14:06:27 -0700
committerAndrew Waterman <andrew@sifive.com>2022-05-12 14:22:45 -0700
commit68b20a9b8af4e9adbff9cccaef2b7c6b2c8ec190 (patch)
tree62c47d77751aa00ba29e7c14a624868d9031af4c /riscv/rocc.cc
parent11f5942b7d8211e61b5ad9259d118033692c0759 (diff)
downloadspike-68b20a9b8af4e9adbff9cccaef2b7c6b2c8ec190.zip
spike-68b20a9b8af4e9adbff9cccaef2b7c6b2c8ec190.tar.gz
spike-68b20a9b8af4e9adbff9cccaef2b7c6b2c8ec190.tar.bz2
Remove insn_func_t::supported field
The field is rendered unnecessary by 11f5942b7d8211e61b5ad9259d118033692c0759. Undoes some changes from 750f008e723bb3b20cec41a47ed5cec549447665.
Diffstat (limited to 'riscv/rocc.cc')
-rw-r--r--riscv/rocc.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/riscv/rocc.cc b/riscv/rocc.cc
index 2d09095..f50934f 100644
--- a/riscv/rocc.cc
+++ b/riscv/rocc.cc
@@ -32,10 +32,10 @@ customX(3)
std::vector<insn_desc_t> rocc_t::get_instructions()
{
std::vector<insn_desc_t> insns;
- insns.push_back((insn_desc_t){true, 0x0b, 0x7f, &::illegal_instruction, c0, &::illegal_instruction, c0});
- insns.push_back((insn_desc_t){true, 0x2b, 0x7f, &::illegal_instruction, c1, &::illegal_instruction, c1});
- insns.push_back((insn_desc_t){true, 0x5b, 0x7f, &::illegal_instruction, c2, &::illegal_instruction, c2});
- insns.push_back((insn_desc_t){true, 0x7b, 0x7f, &::illegal_instruction, c3, &::illegal_instruction, c3});
+ insns.push_back((insn_desc_t){0x0b, 0x7f, &::illegal_instruction, c0, &::illegal_instruction, c0});
+ insns.push_back((insn_desc_t){0x2b, 0x7f, &::illegal_instruction, c1, &::illegal_instruction, c1});
+ insns.push_back((insn_desc_t){0x5b, 0x7f, &::illegal_instruction, c2, &::illegal_instruction, c2});
+ insns.push_back((insn_desc_t){0x7b, 0x7f, &::illegal_instruction, c3, &::illegal_instruction, c3});
return insns;
}