blob: 2140088190b51d01b2d8be2ee9f31b6e09284126 (
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-gumjs.h"
#include "asan.h"
#include "util.h"
#if defined(__arm__)
void asan_instrument(const cs_insn *instr, GumStalkerIterator *iterator) {
UNUSED_PARAMETER(instr);
UNUSED_PARAMETER(iterator);
if (asan_initialized) {
FFATAL("ASAN mode not supported on this architecture");
}
}
void asan_arch_init(void) {
FFATAL("ASAN mode not supported on this architecture");
}
#endif
|