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

#include "debug.h"

#include "frida_cmplog.h"
#include "util.h"

#if defined(__aarch64__)
void cmplog_instrument(const cs_insn *instr, GumStalkerIterator *iterator) {

  UNUSED_PARAMETER(instr);
  UNUSED_PARAMETER(iterator);
  if (__afl_cmp_map == NULL) { return; }
  FATAL("CMPLOG mode not supported on this architecture");

}

#endif