about summary refs log tree commit diff
path: root/frida_mode/src/instrument/instrument_arm32.c
blob: 1a3c40bbf5ddbae3a34be518163f2eab0e0df7bb (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
24
25
26
#include "frida-gum.h"

#include "debug.h"

#include "instrument.h"
#include "util.h"

#if defined(__arm__)

gboolean instrument_is_coverage_optimize_supported(void) {

  return false;

}

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

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

}

#endif