about summary refs log tree commit diff
path: root/frida_mode/src/instrument/instrument_arm32.c
blob: c2d720a7cc36472daf6760054680c71105e56cff (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(__arm__)

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