1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[libFuzzer] add UninstrumentedTest.cpp (missing from a previous commit)

llvm-svn: 252658
This commit is contained in:
Kostya Serebryany 2015-11-10 22:02:56 +00:00
parent a1d7c89fbe
commit 53bfef8ad6

View File

@ -0,0 +1,8 @@
// This test should not be instrumented.
#include <cstdint>
#include <cstddef>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
return 0;
}