Browse Source

Remove vestigial UNUSED annotation

It dates back to when this code was ifdef'd.
pull/1211/head
Andrew Waterman 3 years ago
parent
commit
571945ca6e
  1. 2
      riscv/execute.cc

2
riscv/execute.cc

@ -150,7 +150,7 @@ static void commit_log_print_insn(processor_t *p, reg_t pc, insn_t insn)
fprintf(log_file, "\n");
}
inline void processor_t::update_histogram(reg_t UNUSED pc)
inline void processor_t::update_histogram(reg_t pc)
{
if (histogram_enabled)
pc_histogram[pc]++;

Loading…
Cancel
Save