diff options
author | van Hauser <vh@thc.org> | 2024-07-24 14:50:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-24 14:50:57 +0200 |
commit | db23931e7c1727ddac8691a6241c97b2203ec6fc (patch) | |
tree | 7b3c3bcb8db3aa3e42835edf27be5baea1097c42 /include | |
parent | 19ca7b3761f5abff8b72770d6bbfbde80ef5b985 (diff) | |
parent | 6e37f9b237ed12193688c86b6a527f32793f157e (diff) | |
download | afl++-db23931e7c1727ddac8691a6241c97b2203ec6fc.tar.gz |
Merge pull request #2172 from AFLplusplus/dev
push to stable
Diffstat (limited to 'include')
-rw-r--r-- | include/cmplog.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/include/cmplog.h b/include/cmplog.h index a4449a60..9f995da6 100644 --- a/include/cmplog.h +++ b/include/cmplog.h @@ -53,21 +53,24 @@ struct cmp_header { // 16 bit = 2 bytes struct cmp_operands { u64 v0; - u64 v1; u64 v0_128; + u64 v0_256_0; // u256 is unsupported by any compiler for now, so future use + u64 v0_256_1; + u64 v1; u64 v1_128; - u64 unused; - u8 unused1; - u8 unused2; + u64 v1_256_0; + u64 v1_256_1; + u8 unused[8]; } __attribute__((packed)); struct cmpfn_operands { u8 v0[32]; - u8 v0_len; u8 v1[32]; + u8 v0_len; u8 v1_len; + u8 unused[6]; } __attribute__((packed)); |