mirror of https://github.com/YosysHQ/yosys.git
Fixed handling of foo.__TECHMAP_...
This commit is contained in:
parent
df9d096a7d
commit
9065fb25cc
|
@ -129,7 +129,7 @@ struct TechmapWorker
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
const char *q = strrchr(p+1, '.');
|
const char *q = strrchr(p+1, '.');
|
||||||
p = q ? q : p+1;
|
p = q ? q+1 : p+1;
|
||||||
|
|
||||||
if (!strncmp(p, "_TECHMAP_", 9)) {
|
if (!strncmp(p, "_TECHMAP_", 9)) {
|
||||||
TechmapWireData record;
|
TechmapWireData record;
|
||||||
|
|
Loading…
Reference in New Issue