diff options
Diffstat (limited to 'json')
| -rw-r--r-- | json/jsonparse.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/json/jsonparse.cc b/json/jsonparse.cc index 5c5c1bcd..81b0c3be 100644 --- a/json/jsonparse.cc +++ b/json/jsonparse.cc @@ -748,7 +748,6 @@ void json_import(Context *ctx, string modname, JsonNode *node)      for (int attrid = 0; attrid < GetSize(attr_node->data_dict_keys); attrid++) {          json_import_top_attrib(ctx, modname, attr_node, &ctx->attrs, attrid);      } -    ctx->settings[ctx->id("synth")] = "1";      JsonNode *ports_parent = nullptr;      if (node->data_dict.count("ports") > 0) @@ -884,6 +883,7 @@ void json_import(Context *ctx, string modname, JsonNode *node)          }      }          check_all_nets_driven(ctx); +    ctx->settings[ctx->id("synth")] = "1";  }  }; // End Namespace JsonParser  | 
