mirror of https://github.com/YosysHQ/yosys.git
drivertools.h: switch from log_assert(0) to log_abort() for new feature
This commit is contained in:
parent
d36a387aca
commit
3ae9ca7c2b
|
@ -386,7 +386,7 @@ public:
|
|||
inner = multiple_.hash();
|
||||
break;
|
||||
default:
|
||||
log_assert(0);
|
||||
log_abort();
|
||||
break;
|
||||
}
|
||||
return mkhash((unsigned int)type_, inner);
|
||||
|
@ -937,7 +937,7 @@ public:
|
|||
inner = multiple_.hash();
|
||||
break;
|
||||
default:
|
||||
log_assert(0);
|
||||
log_abort();
|
||||
break;
|
||||
}
|
||||
return mkhash((unsigned int)type_, inner);
|
||||
|
|
Loading…
Reference in New Issue