Coverage Report

Created: 2018-07-03 15:31

/home/travis/build/MoarVM/MoarVM/src/spesh/debug.h
Line
Count
Source (jump to first uncovered line)
1
void MVM_spesh_debug_printf(MVMThreadContext *tc, const char *format, ...);
2
void MVM_spesh_debug_flush(MVMThreadContext *tc);
3
4
0
MVM_STATIC_INLINE MVMint32 MVM_spesh_debug_enabled(MVMThreadContext *tc) {
5
0
    return tc->instance->spesh_log_fh != NULL &&
6
0
        (tc->instance->spesh_limit == 0 ||
7
0
         tc->instance->spesh_produced == tc->instance->spesh_limit);
8
0
}