mirror of https://github.com/YosysHQ/yosys.git
Merge 3ae9ca7c2b
into 29e8812bab
This commit is contained in:
commit
04a087ece5
|
@ -364,7 +364,7 @@ public:
|
||||||
|
|
||||||
unsigned int hash() const
|
unsigned int hash() const
|
||||||
{
|
{
|
||||||
unsigned int inner;
|
unsigned int inner = 0;
|
||||||
switch (type_)
|
switch (type_)
|
||||||
{
|
{
|
||||||
case DriveType::NONE:
|
case DriveType::NONE:
|
||||||
|
@ -385,6 +385,9 @@ public:
|
||||||
case DriveType::MULTIPLE:
|
case DriveType::MULTIPLE:
|
||||||
inner = multiple_.hash();
|
inner = multiple_.hash();
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
log_abort();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return mkhash((unsigned int)type_, inner);
|
return mkhash((unsigned int)type_, inner);
|
||||||
}
|
}
|
||||||
|
@ -912,7 +915,7 @@ public:
|
||||||
|
|
||||||
unsigned int hash() const
|
unsigned int hash() const
|
||||||
{
|
{
|
||||||
unsigned int inner;
|
unsigned int inner = 0;
|
||||||
switch (type_)
|
switch (type_)
|
||||||
{
|
{
|
||||||
case DriveType::NONE:
|
case DriveType::NONE:
|
||||||
|
@ -933,6 +936,9 @@ public:
|
||||||
case DriveType::MULTIPLE:
|
case DriveType::MULTIPLE:
|
||||||
inner = multiple_.hash();
|
inner = multiple_.hash();
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
log_abort();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return mkhash((unsigned int)type_, inner);
|
return mkhash((unsigned int)type_, inner);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue