1 //===-- runtime/Float128Math/trunc.cpp ------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Round to integer, toward zero.
11 //===----------------------------------------------------------------------===//
13 #include "math-entries.h"
15 namespace Fortran::runtime
{
18 #if HAS_LDBL128 || HAS_FLOAT128
19 CppTypeFor
<TypeCategory::Real
, 16> RTDEF(TruncF128
)(
20 CppTypeFor
<TypeCategory::Real
, 16> x
) {
21 return Trunc
<true>::invoke(x
);
26 } // namespace Fortran::runtime