about summary refs log tree commit diff
path: root/frida_mode/src/complog/complog_arm.c
blob: 82cc25576a1f4c92e1a9d9cc61f09d52f21cfeeb (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(__arm64__)
void complog_instrument(const cs_insn *instr, GumStalkerIterator *iterator) {

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

}

#endif