diff options
author | vanhauser-thc <vh@thc.org> | 2021-03-19 16:06:06 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-03-19 16:06:06 +0100 |
commit | 2102264acf5c271b7560a82771b3af8136af9354 (patch) | |
tree | 56cce5a15206634bd1877c428a5b15c064d7fa53 /instrumentation/afl-llvm-common.cc | |
parent | e73c7c59c14d0bff1c1b25aa264fe18b7cdcddaf (diff) | |
download | afl++-2102264acf5c271b7560a82771b3af8136af9354.tar.gz |
fix for new llvm 13 change
Diffstat (limited to 'instrumentation/afl-llvm-common.cc')
-rw-r--r-- | instrumentation/afl-llvm-common.cc | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/instrumentation/afl-llvm-common.cc b/instrumentation/afl-llvm-common.cc index 17780143..74943fb2 100644 --- a/instrumentation/afl-llvm-common.cc +++ b/instrumentation/afl-llvm-common.cc @@ -96,19 +96,11 @@ bool isIgnoreFunction(const llvm::Function *F) { static const char *ignoreSubstringList[] = { - "__asan", - "__msan", - "__ubsan", - "__lsan", - "__san", - "__sanitize", - "__cxx", - "_GLOBAL__", - "DebugCounter", - "DwarfDebug", - "DebugLoc" - - }; + "__asan", "__msan", "__ubsan", "__lsan", + "__san", "__sanitize", "__cxx", "_GLOBAL__", + "DebugCounter", "DwarfDebug", "DebugLoc" + + }; for (auto const &ignoreListFunc : ignoreSubstringList) { |