diff options
author | Your Name <you@example.com> | 2021-12-23 22:39:43 +0000 |
---|---|---|
committer | jon <jon@odroid.lan> | 2021-12-23 23:55:07 +0000 |
commit | 376d1736a8f9de28e76c739c448ada2fb4fcb5a7 (patch) | |
tree | 5187d81407496aee7ee1effc5a6f326d860cb867 /frida_mode/src/instrument/instrument.c | |
parent | edeaf72ea8c83843c68b93ab6b319c202d4ab1ce (diff) | |
download | afl++-376d1736a8f9de28e76c739c448ada2fb4fcb5a7.tar.gz |
Optimize AARCH64 inline assembly
Diffstat (limited to 'frida_mode/src/instrument/instrument.c')
-rw-r--r-- | frida_mode/src/instrument/instrument.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/src/instrument/instrument.c b/frida_mode/src/instrument/instrument.c index e3f3717e..bf102a82 100644 --- a/frida_mode/src/instrument/instrument.c +++ b/frida_mode/src/instrument/instrument.c @@ -32,7 +32,7 @@ char * instrument_coverage_unstable_filename = NULL; static GumStalkerTransformer *transformer = NULL; -__thread guint64 instrument_previous_pc = 0; +__attribute__((aligned(0x1000))) __thread guint64 instrument_previous_pc = 0; static GumAddress previous_rip = 0; static GumAddress previous_end = 0; |