llvm/libc/fuzzing/math/math_differential_fuzz.cpp

//===-- ldexp_differential_fuzz.cpp ---------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// Differential fuzz test for llvm-libc ldexp implementation.
///
//===----------------------------------------------------------------------===//

#include "fuzzing/math/RemQuoDiff.h"
#include "fuzzing/math/SingleInputSingleOutputDiff.h"
#include "fuzzing/math/TwoInputSingleOutputDiff.h"

#include "src/math/ceil.h"
#include "src/math/ceilf.h"
#include "src/math/ceill.h"

#include "src/math/fdim.h"
#include "src/math/fdimf.h"
#include "src/math/fdiml.h"

#include "src/math/floor.h"
#include "src/math/floorf.h"
#include "src/math/floorl.h"

#include "src/math/frexp.h"
#include "src/math/frexpf.h"
#include "src/math/frexpl.h"

#include "src/math/hypotf.h"

#include "src/math/ldexp.h"
#include "src/math/ldexpf.h"
#include "src/math/ldexpl.h"

#include "src/math/logb.h"
#include "src/math/logbf.h"
#include "src/math/logbl.h"

#include "src/math/modf.h"
#include "src/math/modff.h"
#include "src/math/modfl.h"

#include "src/math/remainder.h"
#include "src/math/remainderf.h"
#include "src/math/remainderl.h"

#include "src/math/remquo.h"
#include "src/math/remquof.h"
#include "src/math/remquol.h"

#include "src/math/round.h"
#include "src/math/roundf.h"
#include "src/math/roundl.h"

#include "src/math/sqrt.h"
#include "src/math/sqrtf.h"
#include "src/math/sqrtl.h"

#include "src/math/trunc.h"
#include "src/math/truncf.h"
#include "src/math/truncl.h"

#include <math.h>
#include <stddef.h>
#include <stdint.h>

extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {}