diff options
author | hexcoder- <heiko@hexco.de> | 2021-10-16 14:51:51 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2021-10-16 14:51:51 +0200 |
commit | 7d0e0cde0ad8c5b89eaf72a9751e3fb7513cc0e9 (patch) | |
tree | 72aa87c63cbb12f3bcd58cc8b5385794b244c1ac /instrumentation/afl-llvm-pass.so.cc | |
parent | 1f2fa22dad4440bf053e24811b5ece89ca276afc (diff) | |
download | afl++-7d0e0cde0ad8c5b89eaf72a9751e3fb7513cc0e9.tar.gz |
fix declaration for new pass manager
Diffstat (limited to 'instrumentation/afl-llvm-pass.so.cc')
-rw-r--r-- | instrumentation/afl-llvm-pass.so.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/afl-llvm-pass.so.cc b/instrumentation/afl-llvm-pass.so.cc index 75f8621b..67abc36a 100644 --- a/instrumentation/afl-llvm-pass.so.cc +++ b/instrumentation/afl-llvm-pass.so.cc @@ -76,8 +76,8 @@ namespace { #if LLVM_VERSION_MAJOR >= 7 /* use new pass manager */ class AFLCoverage : public PassInfoMixin<AFLCoverage> { - AFLCoverage() { public: + AFLCoverage() { #else class AFLCoverage : public ModulePass { public: |