mirror of
https://github.com/intel/llvm.git
synced 2026-01-28 01:04:49 +08:00
Namely, template tests have been added for the following functions: ceil, copysign, fabs, fmax, fmin, floor, trunc, round.
14 lines
465 B
C++
14 lines
465 B
C++
//===-- Unittests for fmaxf -----------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "FMaxTest.h"
|
|
|
|
#include "src/math/fmaxf.h"
|
|
|
|
LIST_FMAX_TESTS(float, __llvm_libc::fmaxf)
|