[PATCH] D62733: Add FuzzedDataProvider helper class / single header library.
Matt Morehouse via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 10 18:23:19 PDT 2019
morehouse accepted this revision.
morehouse added inline comments.
This revision is now accepted and ready to land.
================
Comment at: lib/fuzzer/tests/CMakeLists.txt:26
+else()
+ list(APPEND LIBFUZZER_UNITTEST_LINK_FLAGS -Wl,-defaultlib:libcmt,-defaultlib:oldnames)
endif()
----------------
Nit: Let's invert the if-condition:
```
if(WIN32)
...
else()
...
```
Repository:
rCRT Compiler Runtime
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D62733/new/
https://reviews.llvm.org/D62733
More information about the llvm-commits
mailing list