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