aboutsummaryrefslogtreecommitdiffstats
path: root/frontends
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-08-12 12:06:45 -0700
committerEddie Hung <eddie@fpgeh.com>2019-08-12 12:06:45 -0700
commit12c692f6eda7367527fde2a8aad49447a73aa643 (patch)
tree8680eefff6897b2f4b33d12b5d96a6ea8c549b5b /frontends
parent78b30bbb1102047585d1a2eac89b1c7f5ca7344e (diff)
downloadyosys-12c692f6eda7367527fde2a8aad49447a73aa643.tar.gz
yosys-12c692f6eda7367527fde2a8aad49447a73aa643.tar.bz2
yosys-12c692f6eda7367527fde2a8aad49447a73aa643.zip
Revert "Merge pull request #1280 from YosysHQ/revert-1266-eddie/ice40_full_adder"
This reverts commit c851dc13108021834533094a8a3236da6d9e0161, reversing changes made to f54bf1631ff37a83733c162e6ebd188c1d5ea18f.
Diffstat (limited to 'frontends')
-rw-r--r--frontends/ast/ast.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc
index 07ef0a86e..0d6626b19 100644
--- a/frontends/ast/ast.cc
+++ b/frontends/ast/ast.cc
@@ -1172,7 +1172,7 @@ void AST::process(RTLIL::Design *design, AstNode *ast, bool dump_ast1, bool dump
if (design->has((*it)->str)) {
RTLIL::Module *existing_mod = design->module((*it)->str);
- if (!nooverwrite && !overwrite && !existing_mod->get_bool_attribute("\\blackbox")) {
+ if (!nooverwrite && !overwrite && !existing_mod->get_blackbox_attribute()) {
log_file_error((*it)->filename, (*it)->linenum, "Re-definition of module `%s'!\n", (*it)->str.c_str());
} else if (nooverwrite) {
log("Ignoring re-definition of module `%s' at %s:%d.\n",