mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 06:03:23 +00:00
Various win32 / vs build fixes
This commit is contained in:
parent
973d376733
commit
468ae92374
8 changed files with 28 additions and 23 deletions
|
@ -2204,7 +2204,7 @@ void RTLIL::SigSpec::unpack() const
|
|||
that->hash_ = 0;
|
||||
}
|
||||
|
||||
#define DJB2(_hash, _value) do { (_hash) = (((_hash) << 5) + (_hash)) + (_value); } while (0)
|
||||
#define DJB2(_hash, _value) (_hash) = (((_hash) << 5) + (_hash)) + (_value)
|
||||
|
||||
void RTLIL::SigSpec::hash() const
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue