We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b5844b commit a5863f1Copy full SHA for a5863f1
src/jit.c
@@ -2168,9 +2168,8 @@ void clear_hot(block_t *block)
2168
2169
static void code_cache_flush(struct jit_state *state, riscv_t *rv)
2170
{
2171
- rv_log_debug(
2172
- "JIT: Flushing code cache (n_blocks=%d, n_jumps=%d, offset=%u)",
2173
- state->n_blocks, state->n_jumps, state->offset);
+ rv_log_info("JIT: Flushing code cache (n_blocks=%d, n_jumps=%d, offset=%u)",
+ state->n_blocks, state->n_jumps, state->offset);
2174
should_flush = false;
2175
state->offset = state->org_size;
2176
state->n_blocks = 0;
0 commit comments