[libFuzzer] add UninstrumentedTest.cpp (missing from a previous commit)
[oota-llvm.git] / lib / Fuzzer / test / UninstrumentedTest.cpp
1 // This test should not be instrumented.
2 #include <cstdint>
3 #include <cstddef>
4
5 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
6   return 0;
7 }
8