From 0b960509339482f7b41a6ab329ad9438df44370c Mon Sep 17 00:00:00 2001 From: AdvaySingh1 Date: Tue, 3 Feb 2026 08:44:16 -0800 Subject: [PATCH] Added tabbing in blifparse to match sorroundings --- frontends/blif/blifparse.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontends/blif/blifparse.cc b/frontends/blif/blifparse.cc index ca9b23c4f..a02aa65a2 100644 --- a/frontends/blif/blifparse.cc +++ b/frontends/blif/blifparse.cc @@ -249,12 +249,12 @@ void parse_blif(RTLIL::Design *design, std::istream &f, IdString dff_name, bool blif_maxnum = 0; } - // Parse optional node retention section that tracks signal source origins for ABC reintegration. - // Expected format: - // .node_retention_begin - // SRC [source2] ... - // .node_retention_end - if (read_next_line(buffer, buffer_size, line_count, f)) { + // Parse optional node retention section that tracks signal source origins for ABC reintegration. + // Expected format: + // .node_retention_begin + // SRC [source2] ... + // .node_retention_end + if (read_next_line(buffer, buffer_size, line_count, f)) { char *next_cmd = strtok(buffer, " \t\r\n"); if (next_cmd != nullptr && !strcmp(next_cmd, ".node_retention_begin")) { // Parse node retention information