diff options
Diffstat (limited to 'riscv/processor.cc')
-rw-r--r-- | riscv/processor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/riscv/processor.cc b/riscv/processor.cc index 02a3086..0c9da97 100644 --- a/riscv/processor.cc +++ b/riscv/processor.cc @@ -1072,7 +1072,7 @@ void processor_t::register_base_instructions() #include "encoding.h" #undef DECLARE_INSN - #define DECLARE_OVERLAP_INSN(name, ext) { name##_supported &= isa->extension_enabled(ext); } + #define DECLARE_OVERLAP_INSN(name, ext) { name##_supported = isa->extension_enabled(ext); } #include "overlap_list.h" #undef DECLARE_OVERLAP_INSN |