Shourya Goel 7f37b34d31
[libc][complex] Testing infra for MPC (#121261)
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.
2025-01-28 11:01:16 +05:30

9 lines
93 B
C++

#include <mpc.h>
int main() {
mpc_t x;
mpc_init2(x, 256);
mpc_clear(x);
return 0;
}