blob: b2e5ddcf59482b15529d53c7249d5a7d6fec9708 (
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 "complog.h"
#include "util.h"
#if defined(__i386__)
void complog_instrument(const cs_insn *instr, GumStalkerIterator *iterator) {
UNUSED_PARAMETER(instr);
UNUSED_PARAMETER(iterator);
if (__afl_cmp_map == NULL) { return; }
FATAL("Complog mode not supported on this architecture");
}
#endif
|