Remove redundant U/S mode advertisement
[riscv-isa-sim.git] / riscv / processor.cc
index f177090c649f5beb5d843749b2bd57c2b70ab39a..2dd27496775c45b305ac8135f2f0d8e03bc155f4 100644 (file)
@@ -112,10 +112,6 @@ void processor_t::parse_isa_string(const char* str)
   if (supports_extension('Q') && max_xlen < 64)
     bad_isa_string(str);
 
-  // advertise support for supervisor and user modes
-  isa |= 1L << ('s' - 'a');
-  isa |= 1L << ('u' - 'a');
-
   max_isa = isa;
 }