[libc-commits] [libc] [libc][stdfix] Implement fixed point fxbits functions in llvm-libc (PR #114912)
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Wed Nov 6 15:49:59 PST 2024
================
@@ -323,6 +323,19 @@
#define ULACCUM_EPSILON 0x1.0p-32ULK
#endif // ULACCUM_EPSILON
+typedef signed char int_hr_t;
+typedef signed short int int_r_t;
+typedef signed int int_lr_t;
+typedef signed short int_hk_t;
+typedef signed int int_k_t;
+typedef signed long int_lk_t;
+typedef unsigned char uint_uhr_t;
+typedef unsigned short int uint_ur_t;
+typedef unsigned int uint_ulr_t;
+typedef unsigned short int uint_uhk_t;
+typedef unsigned int uint_uk_t;
+typedef unsigned long uint_ulk_t;
----------------
michaelrj-google wrote:
these types belong in type headers. @lntue do we want individual ones or a group type header?
https://github.com/llvm/llvm-project/pull/114912
More information about the libc-commits
mailing list