3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-28 04:46:29 +00:00

Update CI scripts for CMake

Co-authored-by: Catherine <whitequark@whitequark.org>
This commit is contained in:
Miodrag Milanovic 2026-05-22 12:31:30 +02:00 committed by Catherine
parent 16af8cbcc5
commit 17381fa6f8
32 changed files with 364 additions and 339 deletions

View file

@ -206,13 +206,16 @@ bool mp_int_to_const(mp_int *a, Const &b, bool is_signed)
return false;
if (negative) {
mp_neg(a, a);
mp_sub_d(a, 1, a);
if (mp_neg(a, a) != MP_OKAY)
return false;
if (mp_sub_d(a, 1, a) != MP_OKAY)
return false;
}
std::vector<unsigned char> buf;
buf.resize(mp_unsigned_bin_size(a));
mp_to_unsigned_bin(a, buf.data());
if (mp_to_unsigned_bin(a, buf.data()) != MP_OKAY)
return false;
Const::Builder b_bits(mp_count_bits(a) + is_signed);
for (int i = 0; i < mp_count_bits(a);) {