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