mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 04:18:06 +00:00
clang-format 16->17
This commit is contained in:
@ -577,13 +577,13 @@ u8 fuzz_one_original(afl_state_t *afl) {
|
||||
* SIMPLE BITFLIP (+dictionary construction) *
|
||||
*********************************************/
|
||||
|
||||
#define FLIP_BIT(_ar, _b) \
|
||||
do { \
|
||||
\
|
||||
u8 *_arf = (u8 *)(_ar); \
|
||||
u32 _bf = (_b); \
|
||||
_arf[(_bf) >> 3] ^= (128 >> ((_bf)&7)); \
|
||||
\
|
||||
#define FLIP_BIT(_ar, _b) \
|
||||
do { \
|
||||
\
|
||||
u8 *_arf = (u8 *)(_ar); \
|
||||
u32 _bf = (_b); \
|
||||
_arf[(_bf) >> 3] ^= (128 >> ((_bf) & 7)); \
|
||||
\
|
||||
} while (0)
|
||||
|
||||
/* Single walking bit. */
|
||||
@ -2216,7 +2216,7 @@ havoc_stage:
|
||||
|
||||
}
|
||||
|
||||
retry_havoc_step : {
|
||||
retry_havoc_step: {
|
||||
|
||||
u32 r = rand_below(afl, rand_max), item;
|
||||
|
||||
@ -3703,13 +3703,13 @@ static u8 mopt_common_fuzzing(afl_state_t *afl, MOpt_globals_t MOpt_globals) {
|
||||
* SIMPLE BITFLIP (+dictionary construction) *
|
||||
*********************************************/
|
||||
|
||||
#define FLIP_BIT(_ar, _b) \
|
||||
do { \
|
||||
\
|
||||
u8 *_arf = (u8 *)(_ar); \
|
||||
u32 _bf = (_b); \
|
||||
_arf[(_bf) >> 3] ^= (128 >> ((_bf)&7)); \
|
||||
\
|
||||
#define FLIP_BIT(_ar, _b) \
|
||||
do { \
|
||||
\
|
||||
u8 *_arf = (u8 *)(_ar); \
|
||||
u32 _bf = (_b); \
|
||||
_arf[(_bf) >> 3] ^= (128 >> ((_bf) & 7)); \
|
||||
\
|
||||
} while (0)
|
||||
|
||||
/* Single walking bit. */
|
||||
|
Reference in New Issue
Block a user