From: Palmer Dabbelt Date: Wed, 26 Apr 2017 16:14:07 +0000 (-0700) Subject: Remove a debugging printf X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=588fc79f174144df87c412eda513c5903f306816;p=riscv-isa-sim.git Remove a debugging printf --- diff --git a/riscv/processor.cc b/riscv/processor.cc index b2c2d34..6f0d3a7 100644 --- a/riscv/processor.cc +++ b/riscv/processor.cc @@ -189,7 +189,6 @@ void processor_t::set_privilege(reg_t prv) void processor_t::enter_debug_mode(uint8_t cause) { - fprintf(stderr, "Entering debug mode because of cause %d", cause); state.dcsr.cause = cause; state.dcsr.prv = state.prv; set_privilege(PRV_M);