Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / include / cfenv
blob16b3761ee27b16b2a40c2c23516a692e433f60b9
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP_CFENV
11 #define _LIBCPP_CFENV
14     cfenv synopsis
16 This entire header is C99 / C++0X
18 Macros:
20     FE_DIVBYZERO
21     FE_INEXACT
22     FE_INVALID
23     FE_OVERFLOW
24     FE_UNDERFLOW
25     FE_ALL_EXCEPT
26     FE_DOWNWARD
27     FE_TONEAREST
28     FE_TOWARDZERO
29     FE_UPWARD
30     FE_DFL_ENV
32 namespace std
35 Types:
37     fenv_t
38     fexcept_t
40 int feclearexcept(int excepts);
41 int fegetexceptflag(fexcept_t* flagp, int excepts);
42 int feraiseexcept(int excepts);
43 int fesetexceptflag(const fexcept_t* flagp, int excepts);
44 int fetestexcept(int excepts);
45 int fegetround();
46 int fesetround(int round);
47 int fegetenv(fenv_t* envp);
48 int feholdexcept(fenv_t* envp);
49 int fesetenv(const fenv_t* envp);
50 int feupdateenv(const fenv_t* envp);
52 }  // std
55 #include <__assert> // all public C++ headers provide the assertion handler
56 #include <__config>
58 #include <fenv.h>
60 #ifndef _LIBCPP_FENV_H
61 #   error <cfenv> tried including <fenv.h> but didn't find libc++'s <fenv.h> header. \
62           This usually means that your header search paths are not configured properly. \
63           The header search paths should contain the C++ Standard Library headers before \
64           any C Standard Library, and you are probably using compiler flags that make that \
65           not be the case.
66 #endif
68 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
69 #  pragma GCC system_header
70 #endif
72 _LIBCPP_BEGIN_NAMESPACE_STD
74 using ::fenv_t _LIBCPP_USING_IF_EXISTS;
75 using ::fexcept_t _LIBCPP_USING_IF_EXISTS;
77 using ::feclearexcept _LIBCPP_USING_IF_EXISTS;
78 using ::fegetexceptflag _LIBCPP_USING_IF_EXISTS;
79 using ::feraiseexcept _LIBCPP_USING_IF_EXISTS;
80 using ::fesetexceptflag _LIBCPP_USING_IF_EXISTS;
81 using ::fetestexcept _LIBCPP_USING_IF_EXISTS;
82 using ::fegetround _LIBCPP_USING_IF_EXISTS;
83 using ::fesetround _LIBCPP_USING_IF_EXISTS;
84 using ::fegetenv _LIBCPP_USING_IF_EXISTS;
85 using ::feholdexcept _LIBCPP_USING_IF_EXISTS;
86 using ::fesetenv _LIBCPP_USING_IF_EXISTS;
87 using ::feupdateenv _LIBCPP_USING_IF_EXISTS;
89 _LIBCPP_END_NAMESPACE_STD
91 #endif // _LIBCPP_CFENV