mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #2866 from rswarbrick/found-init
Delete unused found_init variable
This commit is contained in:
commit
9008b87c39
|
@ -28,12 +28,9 @@ PRIVATE_NAMESPACE_BEGIN
|
|||
|
||||
void proc_init(RTLIL::Module *mod, SigMap &sigmap, RTLIL::Process *proc)
|
||||
{
|
||||
bool found_init = false;
|
||||
|
||||
for (auto &sync : proc->syncs)
|
||||
if (sync->type == RTLIL::SyncType::STi)
|
||||
{
|
||||
found_init = true;
|
||||
log("Found init rule in `%s.%s'.\n", mod->name.c_str(), proc->name.c_str());
|
||||
|
||||
for (auto &action : sync->actions)
|
||||
|
|
Loading…
Reference in New Issue