3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-04 16:44:08 +00:00

Merge pull request #4960 from stashcroft/fix-32-bit-builds

Make 32-bit tests pass
This commit is contained in:
Emil J 2025-03-25 18:44:44 +01:00 committed by GitHub
commit af9ad51a0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 3 deletions

View file

@ -2224,10 +2224,10 @@ module \$print (EN, TRG, ARGS);
parameter PRIORITY = 0;
parameter FORMAT = "";
parameter ARGS_WIDTH = 0;
parameter signed ARGS_WIDTH = 0;
parameter TRG_ENABLE = 1;
parameter TRG_WIDTH = 0;
parameter signed TRG_WIDTH = 0;
parameter TRG_POLARITY = 0;
input EN;

View file

@ -241,7 +241,10 @@ struct CtlzTest
{
if (a == 0)
return bits;
return __builtin_clzl(a) - (64 - bits);
if (sizeof(long) == 4)
return __builtin_clzll(a) - (64 - bits);
else
return __builtin_clzl(a) - (64 - bits);
}
template<size_t Bits>