about summary refs log tree commit diff
path: root/frida_mode/src/complog/complog_x86.c
blob: df7b7cc1633be66a97066f275445ab3ecb103127 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "frida-gum.h"

#include "debug.h"

#include "complog.h"

#if defined(__arm__)
void complog_instrument(const cs_insn *instr, GumStalkerIterator *iterator) {

  FATAL("Complog mode not supported on this architecture");

}

#endif