[PATCH] D20943: [LibFuzzer] [WIP] Declare and use sanitizer functions in `fuzzer::ExternalFunctions`

Dan Liew via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 6 18:19:14 PDT 2016


delcypher added inline comments.

================
Comment at: lib/Fuzzer/FuzzerDriver.cpp:428
@@ +427,3 @@
+// Storage for global ExternalFunctions object.
+ExternalFunctions EF;
+
----------------
kcc wrote:
> make this ExternalFunctions *EF
We could also use  `std::unique_ptr<ExternalFunctions>` instead or are you fine with an explicit delete?


http://reviews.llvm.org/D20943





More information about the llvm-commits mailing list