llvm-project/libc/test/src/math/roundevenl_test.cpp
Vinayak Dev 3b961d113e
[libc] Implement roundeven C23 math functions (#87678)
Implements the functions `roundeven()`, `roundevenf()`, `roundevenl()`
from the roundeven family of functions introduced in C23. Also
implements `roundevenf128()`.
2024-04-05 08:36:12 -04:00

14 lines
494 B
C++

//===-- Unittests for roundevenl ------------------------------------------===//
//
// 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 "RoundEvenTest.h"
#include "src/math/roundevenl.h"
LIST_ROUNDEVEN_TESTS(long double, LIBC_NAMESPACE::roundevenl)