//===-- RoundingModeUtils.cpp ---------------------------------------------===// // // 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 "RoundingModeUtils.h" #include "src/__support/FPUtil/FEnvImpl.h" #include "src/__support/FPUtil/rounding_mode.h" #include "hdr/fenv_macros.h" #include "src/__support/macros/config.h" namespace LIBC_NAMESPACE_DECL { namespace fputil { namespace testing { int get_fe_rounding(RoundingMode mode) { … } ForceRoundingMode::ForceRoundingMode(RoundingMode mode) { … } ForceRoundingMode::~ForceRoundingMode() { … } } // namespace testing } // namespace fputil } // namespace LIBC_NAMESPACE_DECL