diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-08-29 09:08:58 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-08-29 09:08:58 -0700 |
commit | 83ffec26cbda434b31a2bbd004213a538bf3e6e6 (patch) | |
tree | e35824cec32219b34106f4ab419b26fb86068a25 | |
parent | 6510297712729f9742d00f6a4cd4fc3a0e530758 (diff) | |
download | yosys-83ffec26cbda434b31a2bbd004213a538bf3e6e6.tar.gz yosys-83ffec26cbda434b31a2bbd004213a538bf3e6e6.tar.bz2 yosys-83ffec26cbda434b31a2bbd004213a538bf3e6e6.zip |
Remove newline
-rw-r--r-- | frontends/ast/ast.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc index 01e865557..a3a78e414 100644 --- a/frontends/ast/ast.cc +++ b/frontends/ast/ast.cc @@ -1078,7 +1078,6 @@ static AstModule* process_module(AstNode *ast, bool defer, AstNode *original_ast log_file_error(ast->filename, ast->linenum, "Attribute `%s' with non-constant value!\n", attr.first.c_str()); current_module->attributes[attr.first] = attr.second->asAttrConst(); } - for (size_t i = 0; i < ast->children.size(); i++) { AstNode *node = ast->children[i]; if (node->type == AST_WIRE || node->type == AST_MEMORY) |