File tree 2 files changed +3
-1
lines changed
libc/src/__support/FPUtil
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 14
14
#include " dyadic_float.h"
15
15
16
16
#include " src/__support/CPP/type_traits.h"
17
+ #include " src/__support/big_int.h"
17
18
#include " src/__support/common.h"
18
19
#include " src/__support/macros/config.h"
19
20
#include " src/__support/macros/optimization.h" // LIBC_UNLIKELY
@@ -320,7 +321,7 @@ totalorder(T x, T y) {
320
321
StorageType x_u = x_bits.uintval ();
321
322
StorageType y_u = y_bits.uintval ();
322
323
323
- using signed_t = cpp:: make_signed_t <StorageType>;
324
+ using signed_t = make_integral_or_big_int_signed_t <StorageType>;
324
325
signed_t x_signed = static_cast <signed_t >(x_u);
325
326
signed_t y_signed = static_cast <signed_t >(y_u);
326
327
Original file line number Diff line number Diff line change @@ -189,6 +189,7 @@ add_header_library(
189
189
.fp_bits
190
190
.fenv_impl
191
191
libc.src.__support.CPP.type_traits
192
+ libc.src.__support.big_int
192
193
libc.src.__support.uint128
193
194
libc.src.__support.common
194
195
libc.src.__support.macros .optimization
You can’t perform that action at this time.
0 commit comments