about summary refs log tree commit diff
path: root/frida_mode/src/instrument/instrument_x86.c
blob: 5b8cbbba38ffb36d6bef5412ed1c91438ba37a3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "frida-gum.h"

#include "debug.h"

#include "instrument.h"

#if defined(__i386__)

gboolean instrument_is_coverage_optimize_supported(void) {

  return false;

}

void instrument_coverage_optimize(const cs_insn *   instr,
                                  GumStalkerOutput *output) {

  FATAL("Optimized coverage not supported on this architecture");

}

#endif