CXX_FAST_TLS calling convention: performance improvement for x86-64.
[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