mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp to llvmorg-14-init-10186-gff7f2cfa959b. PR: 261742 MFC after: 2 weeks
22 lines
756 B
C++
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
|