aboutsummaryrefslogtreecommitdiff
path: root/riscv/execute.cc
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/execute.cc')
-rw-r--r--riscv/execute.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/riscv/execute.cc b/riscv/execute.cc
index 8f7b85f..03588f3 100644
--- a/riscv/execute.cc
+++ b/riscv/execute.cc
@@ -66,10 +66,6 @@ void processor_t::step(size_t n)
n = std::min(n, (size_t) 11);
}
- if (debug) {
- fprintf(stderr, "step(%ld)\n", n);
- }
-
while (n > 0) {
size_t instret = 0;
reg_t pc = state.pc;