diff options
author | David CARLIER <devnexen@gmail.com> | 2023-03-04 14:46:38 +0000 |
---|---|---|
committer | David CARLIER <devnexen@gmail.com> | 2023-03-04 14:46:38 +0000 |
commit | bc61c90fb6e8d26d864aea7bd31f00485db4e942 (patch) | |
tree | d47546925a879832e24c8e7060149c19c4832d39 /instrumentation/split-compares-pass.so.cc | |
parent | 6af195916c07766029f92bd069efedfc67a94ea4 (diff) | |
download | afl++-bc61c90fb6e8d26d864aea7bd31f00485db4e942.tar.gz |
llvm instrumentation trying to delete all static data
at module end of pass with llvm_shutdown and is concurrent safe.
Diffstat (limited to 'instrumentation/split-compares-pass.so.cc')
-rw-r--r-- | instrumentation/split-compares-pass.so.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/split-compares-pass.so.cc b/instrumentation/split-compares-pass.so.cc index 8a07610c..a189c203 100644 --- a/instrumentation/split-compares-pass.so.cc +++ b/instrumentation/split-compares-pass.so.cc @@ -66,7 +66,7 @@ namespace { #if LLVM_MAJOR >= 11 class SplitComparesTransform : public PassInfoMixin<SplitComparesTransform> { - + llvm_shutdown_obj LSO; public: // static char ID; SplitComparesTransform() : enableFPSplit(0) { |