1*e581841eSTue Ly //===-- Differential test for log10f --------------------------------------===//
2*e581841eSTue Ly //
3*e581841eSTue Ly // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*e581841eSTue Ly // See https://llvm.org/LICENSE.txt for license information.
5*e581841eSTue Ly // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*e581841eSTue Ly //
7*e581841eSTue Ly //===----------------------------------------------------------------------===//
8*e581841eSTue Ly 
9*e581841eSTue Ly #include "SingleInputSingleOutputDiff.h"
10*e581841eSTue Ly 
11*e581841eSTue Ly #include "src/math/log10f.h"
12*e581841eSTue Ly 
13*e581841eSTue Ly #include <math.h>
14*e581841eSTue Ly 
15*e581841eSTue Ly SINGLE_INPUT_SINGLE_OUTPUT_PERF(float, __llvm_libc::log10f, ::log10f,
16*e581841eSTue Ly                                 "log10f_perf.log")
17