Coverage Report

Created: 2018-07-03 15:31

/home/travis/build/MoarVM/MoarVM/src/spesh/debug.c
Line
Count
Source (jump to first uncovered line)
1
#include "moar.h"
2
#include <stdarg.h>
3
4
0
void MVM_spesh_debug_printf(MVMThreadContext *tc, const char *format, ...) {
5
0
    va_list list;
6
0
    va_start(list, format);
7
0
    vfprintf(tc->instance->spesh_log_fh, format, list);
8
0
    va_end(list);
9
0
}
10
11
0
void MVM_spesh_debug_flush(MVMThreadContext *tc) {
12
0
    fflush(tc->instance->spesh_log_fh);
13
0
}