Handle synthesis l-values that are part selects.

This commit is contained in:
Stephen Williams
2013-09-08 18:18:31 -07:00
parent 64b2345cf2
commit 7d6d93e4e2
8 changed files with 261 additions and 153 deletions
+4 -3
View File
@@ -225,9 +225,10 @@ NexusSet* NetEvent::nex_async_()
return 0;
}
for (unsigned idx = 0 ; idx < cur->pin_count() ; idx += 1)
tmp->add(cur->pin(idx).nexus());
for (unsigned idx = 0 ; idx < cur->pin_count() ; idx += 1) {
Nexus*nex = cur->pin(idx).nexus();
tmp->add(nex, 0, nex->vector_width());
}
}
return tmp;