bolt/deps/llvm-18.1.8/compiler-rt/lib/fuzzer/FuzzerExtraCountersDarwin.cpp
2025-02-14 19:21:04 +01:00

22 lines
756 B
C++

//===- FuzzerExtraCountersDarwin.cpp - Extra coverage counters for Darwin -===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// Extra coverage counters defined by user code for Darwin.
//===----------------------------------------------------------------------===//
#include "FuzzerPlatform.h"
#include <cstdint>
#if LIBFUZZER_APPLE
namespace fuzzer {
uint8_t *ExtraCountersBegin() { return nullptr; }
uint8_t *ExtraCountersEnd() { return nullptr; }
void ClearExtraCounters() {}
} // namespace fuzzer
#endif