We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb61a5e commit 7c53723Copy full SHA for 7c53723
libc/src/__support/FPUtil/aarch64/FEnvImpl.h
@@ -26,7 +26,10 @@
26
27
namespace LIBC_NAMESPACE_DECL {
28
namespace fputil {
29
-
+#pragma push_macro("OVERFLOW")
30
+#undef OVERFLOW
31
+#pragma push_macro("UNDERFLOW")
32
+#undef UNDERFLOW
33
struct FEnv {
34
struct FPState {
35
uint32_t ControlWord;
@@ -279,6 +282,8 @@ LIBC_INLINE int set_env(const fenv_t *envp) {
279
282
return 0;
280
283
}
281
284
285
+#pragma pop_macro("UNDERFLOW")
286
+#pragma pop_macro("OVERFLOW")
287
} // namespace fputil
288
} // namespace LIBC_NAMESPACE_DECL
289
0 commit comments