File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -1040,6 +1040,7 @@ third_party/libcxx/ryu/d2s_intrinsics.h \
1040
1040
third_party/libcxx/ryu/digit_table.h \
1041
1041
third_party/libcxx/ryu/f2s.h \
1042
1042
third_party/libcxx/ryu/ryu.h \
1043
+ third_party/libcxx/stdfloat \
1043
1044
1044
1045
THIRD_PARTY_LIBCXX_A_SRCS = \
1045
1046
third_party/libcxx/algorithm.cpp \
Original file line number Diff line number Diff line change
1
+ // -*- C++ -*-
2
+
3
+ export namespace std {
4
+
5
+ #if defined(__STDCPP_FLOAT16_T__)
6
+ using float16_t = _Float16;
7
+ #endif
8
+
9
+ #if defined(__STDCPP_FLOAT32_T__)
10
+ using float32_t = float ;
11
+ #endif
12
+
13
+ #if defined(__STDCPP_FLOAT64_T__)
14
+ using float64_t = double ;
15
+ #endif
16
+
17
+ #if defined(__STDCPP_FLOAT128_T__)
18
+ using float128_t = long double ;
19
+ #endif
20
+
21
+ #if defined(__STDCPP_BFLOAT16_T__)
22
+ using bfloat16_t = __bf16;
23
+ #endif
24
+
25
+ } // namespace std
You can’t perform that action at this time.
0 commit comments