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