summaryrefslogtreecommitdiff
path: root/libc/utils/MPCWrapper
AgeCommit message (Collapse)Author
2025-07-23[libc][NFC] Add stdint.h proxy header to fix dependency issue with ↵lntue
<stdint.h> includes. (#150303) https://github.com/llvm/llvm-project/issues/149993
2025-03-04[libc][bazel] Add BUILD targets for complex functions and tests. (#129618)Jorge Gorbe Moya
This involved a little bit of yak shaving because one of the new tests depends on MPC, and we didn't have targets for it yet, so I ended up needing to add a similar setup to what we have for MPFR.
2025-02-28[libc] Fix warning in libc/utils/MPCWrapper/MPCUtils.h (#129349)Jorge Gorbe Moya
`cpp::is_complex_type_same<T1, T2>` is a function, so we need parentheses in order to call it. Otherwise the expression is treated like a function pointer which is always true in this boolean context.
2025-01-29[libc] Update include directory for libcMPCWrapper target when ↵lntue
LIBC_MPC_INSTALL_PATH is set. (#124810)
2025-01-28[libc][complex] Testing infra for MPC (#121261)Shourya Goel
This PR aims to add the groundwork to test the precision of libc complex functions against MPC. I took `cargf` as a test to verify that the infra works fine.