[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / libc / utils / testutils / RoundingModeUtils.h
blob49c81ec4a8cea7d1b0ae8449eff54b2324c943d6
1 //===-- RoundingModeUtils.h -------------------------------------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIBC_UTILS_TESTUTILS_ROUNDINGMODEUTILS_H
10 #define LLVM_LIBC_UTILS_TESTUTILS_ROUNDINGMODEUTILS_H
12 #include <stdint.h>
14 namespace __llvm_libc {
15 namespace testutils {
17 enum class RoundingMode : uint8_t { Upward, Downward, TowardZero, Nearest };
19 struct ForceRoundingMode {
20 ForceRoundingMode(RoundingMode);
21 ~ForceRoundingMode();
23 int old_rounding_mode;
24 int rounding_mode;
27 template <RoundingMode R> struct ForceRoundingModeTest : ForceRoundingMode {
28 ForceRoundingModeTest() : ForceRoundingMode(R) {}
31 } // namespace testutils
32 } // namespace __llvm_libc
34 #endif // LLVM_LIBC_UTILS_TESTUTILS_ROUNDINGMODEUTILS_H