diff options
author | David Shah <dave@ds0.me> | 2018-11-26 09:36:43 +0000 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2018-11-26 09:36:43 +0000 |
commit | eda77a5244b2adc2b547e731cc94e14ce2736b57 (patch) | |
tree | 0b05c7aab0b1c8ffc52b9d5783619489919d983d /json | |
parent | fe2fa0e3ed3cdd67cb0b4d12fc6ad0196bb8dff8 (diff) | |
download | nextpnr-eda77a5244b2adc2b547e731cc94e14ce2736b57.tar.gz nextpnr-eda77a5244b2adc2b547e731cc94e14ce2736b57.tar.bz2 nextpnr-eda77a5244b2adc2b547e731cc94e14ce2736b57.zip |
json: Remove superfluous floating node message
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'json')
-rw-r--r-- | json/jsonparse.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/json/jsonparse.cc b/json/jsonparse.cc index e7f39a19..bddbee0b 100644 --- a/json/jsonparse.cc +++ b/json/jsonparse.cc @@ -472,12 +472,7 @@ void json_import_ports(Context *ctx, const string &modname, const std::vector<Id vcc_net(ctx, net.get()); } else if (wire_node->data_string.compare(string("x")) == 0) { - ground_net(ctx, net.get()); - log_info(" Floating wire node value, " - "'%s' on '%s'/'%s', converted to zero driver\n", - this_port.name.c_str(ctx), modname.c_str(), obj_name.c_str()); - } else log_error(" Unknown fixed type wire node " "value, \'%s\'\n", |