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