aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp/libcxx/include/limits
diff options
context:
space:
mode:
authormikhnenko <mikhnenko@yandex-team.com>2023-09-22 23:06:24 +0300
committermikhnenko <mikhnenko@yandex-team.com>2023-09-22 23:25:13 +0300
commitb8b31d1d500378c44c7e2d817c2b1b4f86524320 (patch)
tree6a482e8061d7b747a149dc6c8944b383d545846d /contrib/libs/cxxsupp/libcxx/include/limits
parent472fb95eccedb6f33c8a1b40919a0b9930178177 (diff)
downloadydb-b8b31d1d500378c44c7e2d817c2b1b4f86524320.tar.gz
Udp libc++ for 2 days with fake-id changes
Diffstat (limited to 'contrib/libs/cxxsupp/libcxx/include/limits')
-rw-r--r--contrib/libs/cxxsupp/libcxx/include/limits12
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/limits b/contrib/libs/cxxsupp/libcxx/include/limits
index bf5d6d1fc4..5afef4bd7e 100644
--- a/contrib/libs/cxxsupp/libcxx/include/limits
+++ b/contrib/libs/cxxsupp/libcxx/include/limits
@@ -339,7 +339,11 @@ protected:
static _LIBCPP_CONSTEXPR const bool is_modulo = false;
static _LIBCPP_CONSTEXPR const bool traps = false;
+#if (defined(__arm__) || defined(__aarch64__))
+ static _LIBCPP_CONSTEXPR const bool tinyness_before = true;
+#else
static _LIBCPP_CONSTEXPR const bool tinyness_before = false;
+#endif
static _LIBCPP_CONSTEXPR const float_round_style round_style = round_to_nearest;
};
@@ -385,7 +389,11 @@ protected:
static _LIBCPP_CONSTEXPR const bool is_modulo = false;
static _LIBCPP_CONSTEXPR const bool traps = false;
+#if (defined(__arm__) || defined(__aarch64__))
+ static _LIBCPP_CONSTEXPR const bool tinyness_before = true;
+#else
static _LIBCPP_CONSTEXPR const bool tinyness_before = false;
+#endif
static _LIBCPP_CONSTEXPR const float_round_style round_style = round_to_nearest;
};
@@ -435,7 +443,11 @@ protected:
static _LIBCPP_CONSTEXPR const bool is_modulo = false;
static _LIBCPP_CONSTEXPR const bool traps = false;
+#if (defined(__arm__) || defined(__aarch64__))
+ static _LIBCPP_CONSTEXPR const bool tinyness_before = true;
+#else
static _LIBCPP_CONSTEXPR const bool tinyness_before = false;
+#endif
static _LIBCPP_CONSTEXPR const float_round_style round_style = round_to_nearest;
};