diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-12-02 14:34:21 +0100 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-12-02 14:34:21 +0100 |
commit | 124ec8d297269b6b3066123782a7e92c802d2248 (patch) | |
tree | f18a4a42111ea2faa08ef2183d995aa254146e7b /llvm_mode/afl-llvm-pass.so.cc | |
parent | e9ed056913b4ce711ae47699c1937779036259e7 (diff) | |
download | afl++-124ec8d297269b6b3066123782a7e92c802d2248.tar.gz |
code format (contributors, do it!)
Diffstat (limited to 'llvm_mode/afl-llvm-pass.so.cc')
-rw-r--r-- | llvm_mode/afl-llvm-pass.so.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm_mode/afl-llvm-pass.so.cc b/llvm_mode/afl-llvm-pass.so.cc index 4ce073a5..1601a4f8 100644 --- a/llvm_mode/afl-llvm-pass.so.cc +++ b/llvm_mode/afl-llvm-pass.so.cc @@ -94,12 +94,12 @@ bool AFLCoverage::runOnModule(Module &M) { LLVMContext &C = M.getContext(); - IntegerType *Int8Ty = IntegerType::getInt8Ty(C); - IntegerType *Int32Ty = IntegerType::getInt32Ty(C); - struct timeval tv; - struct timezone tz; - u32 rand_seed; - unsigned int cur_loc = 0; + IntegerType * Int8Ty = IntegerType::getInt8Ty(C); + IntegerType * Int32Ty = IntegerType::getInt32Ty(C); + struct timeval tv; + struct timezone tz; + u32 rand_seed; + unsigned int cur_loc = 0; /* Setup random() so we get Actually Random(TM) outputs from AFL_R() */ gettimeofday(&tv, &tz); |