From: Miodrag Milanovic Date: Fri, 21 Jun 2019 18:01:40 +0000 (+0200) Subject: Fix json formatting X-Git-Tag: yosys-0.9~49^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fde90f7f8eb4150c7f806ab4baa53057a56bc160;p=yosys.git Fix json formatting --- diff --git a/backends/json/json.cc b/backends/json/json.cc index eb59e5eba..dda4dfedd 100644 --- a/backends/json/json.cc +++ b/backends/json/json.cc @@ -126,11 +126,11 @@ struct JsonWriter f << stringf("%s\n", first ? "" : ","); f << stringf(" %s: {\n", get_name(n).c_str()); f << stringf(" \"direction\": \"%s\",\n", w->port_input ? w->port_output ? "inout" : "input" : "output"); - f << stringf(" \"bits\": %s\n", get_bits(w).c_str()); if (w->start_offset) f << stringf(" \"offset\": %d,\n", w->start_offset); if (w->upto) f << stringf(" \"upto\": 1,\n"); + f << stringf(" \"bits\": %s\n", get_bits(w).c_str()); f << stringf(" }"); first = false; }