Skip to content

Commit 1ff730f

Browse files
rmn30nwf-msr
authored andcommitted
riscv_sim: disable tracing by default.
The current default is excessively verbose, meaning most invocations require -V to disable verbose tracing, sometimes followed by options to selectively re-enable tracing.
1 parent 2f948ab commit 1ff730f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

c_emulator/riscv_sim.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ uint64_t mem_sig_start = 0;
8080
uint64_t mem_sig_end = 0;
8181
int signature_granularity = 4;
8282

83-
bool config_print_instr = true;
84-
bool config_print_reg = true;
85-
bool config_print_mem_access = true;
86-
bool config_print_platform = true;
83+
bool config_print_instr = false;
84+
bool config_print_reg = false;
85+
bool config_print_mem_access = false;
86+
bool config_print_platform = false;
8787
bool config_print_rvfi = false;
88-
bool config_print_exception = true;
88+
bool config_print_exception = false;
8989
int config_use_boot_rom =
9090
#ifdef NO_BOOT_ROM
9191
false

0 commit comments

Comments
 (0)