aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast
diff options
context:
space:
mode:
authorJeff Wang <jjj11x@gmail.com>2020-02-17 04:40:02 -0500
committerJeff Wang <jeff.wang@utexas.edu>2020-02-17 04:42:49 -0500
commita31ba8e5d5b5eefdea35aaec585118dca6287673 (patch)
tree2737eae9fad494fdc0e9e36e611f65da99bcda8c /frontends/ast
parentd12ba42a741464d410773471813d0a78a7ae1db2 (diff)
downloadyosys-a31ba8e5d5b5eefdea35aaec585118dca6287673.tar.gz
yosys-a31ba8e5d5b5eefdea35aaec585118dca6287673.tar.bz2
yosys-a31ba8e5d5b5eefdea35aaec585118dca6287673.zip
remove unnecessary blank line
Diffstat (limited to 'frontends/ast')
-rw-r--r--frontends/ast/simplify.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc
index b9fb37d50..69056aeee 100644
--- a/frontends/ast/simplify.cc
+++ b/frontends/ast/simplify.cc
@@ -2637,10 +2637,9 @@ skip_dynamic_range_lvalue_expansion:;
wire->is_output = false;
wire->is_reg = true;
wire->attributes["\\nosync"] = AstNode::mkconst_int(1, false);
- if (child->type == AST_ENUM_ITEM){
+ if (child->type == AST_ENUM_ITEM)
wire->attributes["\\enum_base_type"] = child->attributes["\\enum_base_type"];
- }
wire_cache[child->str] = wire;
current_ast_mod->children.push_back(wire);