about summary refs log tree commit diff
path: root/frida_mode/src/instrument/instrument.c
diff options
context:
space:
mode:
authorYour Name <you@example.com>2021-12-23 22:39:43 +0000
committerjon <jon@odroid.lan>2021-12-23 23:55:07 +0000
commit376d1736a8f9de28e76c739c448ada2fb4fcb5a7 (patch)
tree5187d81407496aee7ee1effc5a6f326d860cb867 /frida_mode/src/instrument/instrument.c
parentedeaf72ea8c83843c68b93ab6b319c202d4ab1ce (diff)
downloadafl++-376d1736a8f9de28e76c739c448ada2fb4fcb5a7.tar.gz
Optimize AARCH64 inline assembly
Diffstat (limited to 'frida_mode/src/instrument/instrument.c')
-rw-r--r--frida_mode/src/instrument/instrument.c2
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;