Generate extra code only in profiling mode

This commit is contained in:
Fabian 2020-12-31 19:14:33 -06:00
parent 472e53fec6
commit d4cb380899

View file

@ -262,7 +262,7 @@ pub fn jit_add_seg_offset(ctx: &mut JitContext, default_segment: u32) {
}
codegen::gen_profiler_stat_increment(ctx.builder, profiler::stat::SEG_OFFSET_NOT_OPTIMISED);
if cfg!(debug_assertions) && seg != CS && seg != SS {
if cfg!(feature = "profiler") && seg != CS && seg != SS {
ctx.builder.const_i32(seg as i32);
ctx.builder.call_fn1("log_segment_null");
}