From: Clifford Wolf Date: Fri, 21 Jun 2019 17:25:35 +0000 (+0200) Subject: Merge pull request #1123 from mmicko/fix_typo X-Git-Tag: yosys-0.9~52 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e66481497155edd8af855df268befeabe3e87f7e;hp=6d74cf0d2b903eae16372f58dc15e4bc67666a2b;p=yosys.git Merge pull request #1123 from mmicko/fix_typo Fix json frontend loading upto --- diff --git a/frontends/json/jsonparse.cc b/frontends/json/jsonparse.cc index 344b8c2c8..b74d41dd2 100644 --- a/frontends/json/jsonparse.cc +++ b/frontends/json/jsonparse.cc @@ -373,7 +373,7 @@ void json_import(Design *design, string &modname, JsonNode *node) wire = module->addWire(net_name, GetSize(bits_node->data_array)); if (net_node->data_dict.count("upto") != 0) { - JsonNode *val = net_node->data_dict.at("offset"); + JsonNode *val = net_node->data_dict.at("upto"); if (val->type == 'N') wire->upto = val->data_number != 0; }