From 794fc6df607d76cd3763dea75f7c93ad48aa306f Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Wed, 13 Jun 2018 17:52:18 +0200 Subject: Add support for CellInfo->pins in router Signed-off-by: Clifford Wolf --- frontend/json/jsonparse.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend') diff --git a/frontend/json/jsonparse.cc b/frontend/json/jsonparse.cc index 92590902..82874703 100644 --- a/frontend/json/jsonparse.cc +++ b/frontend/json/jsonparse.cc @@ -421,8 +421,8 @@ void json_import_ports(Design *design, const string &modname, // // Pick a name for this port if (is_bus) - this_port.name = - port_info.name.str() + "[" + std::to_string(index) + "]"; + this_port.name = port_info.name.str() + "[" + + std::to_string(index) + "]"; else this_port.name = port_info.name; this_port.type = port_info.type; -- cgit v1.2.3