diff options
Diffstat (limited to 'frontend/json_frontend.cc')
-rw-r--r-- | frontend/json_frontend.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/json_frontend.cc b/frontend/json_frontend.cc index 136786fc..52f7bfdc 100644 --- a/frontend/json_frontend.cc +++ b/frontend/json_frontend.cc @@ -197,7 +197,7 @@ bool parse_json(std::istream &in, const std::string &filename, Context *ctx) log_error("JSON file '%s' doesn't look like a netlist (doesn't contain \"modules\" key)\n", filename.c_str()); } - GenericFrontend<JsonFrontendImpl>(ctx, JsonFrontendImpl(root))(); + GenericFrontend<JsonFrontendImpl>(ctx, JsonFrontendImpl(root), /*split_io=*/true)(); return true; } |