Merge pull request #1123 from mmicko/fix_typo
authorClifford Wolf <clifford@clifford.at>
Fri, 21 Jun 2019 17:25:35 +0000 (19:25 +0200)
committerGitHub <noreply@github.com>
Fri, 21 Jun 2019 17:25:35 +0000 (19:25 +0200)
Fix json frontend loading upto

frontends/json/jsonparse.cc

index 344b8c2c8492155035ff684679e7b5282029e021..b74d41dd2a936445f32d988f55ce6712025fc440 100644 (file)
@@ -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;
                        }