From 571945ca6e55191866aefe62ec4d9d17145cc174 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Tue, 3 Jan 2023 22:22:36 -0800 Subject: Remove vestigial UNUSED annotation It dates back to when this code was ifdef'd. --- riscv/execute.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscv/execute.cc b/riscv/execute.cc index 844f2b8..b093e72 100644 --- a/riscv/execute.cc +++ b/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]++; -- cgit v1.1