diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-05-04 10:48:23 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-05-04 10:48:23 +0200 |
commit | 658f93663b12d3199f636cad8bf75aa1ee58108b (patch) | |
tree | ac03055645c1d761eb5a24f76ed37e0b9276c415 | |
parent | 06d35ea9425dbfeff8bcd0d842a31d22843b937b (diff) | |
download | yosys-658f93663b12d3199f636cad8bf75aa1ee58108b.tar.gz yosys-658f93663b12d3199f636cad8bf75aa1ee58108b.tar.bz2 yosys-658f93663b12d3199f636cad8bf75aa1ee58108b.zip |
Fixed iopadmap attribute handling
-rw-r--r-- | passes/techmap/iopadmap.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/passes/techmap/iopadmap.cc b/passes/techmap/iopadmap.cc index a28121052..a26891363 100644 --- a/passes/techmap/iopadmap.cc +++ b/passes/techmap/iopadmap.cc @@ -163,6 +163,7 @@ struct IopadmapPass : public Pass { if (!portname2.empty()) { new_wire = module->addWire(NEW_ID, wire); module->swap_names(new_wire, wire); + wire->attributes.clear(); } if (flag_bits) |