aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/simplify.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-09-06 11:46:44 +0200
committerClifford Wolf <clifford@clifford.at>2014-09-06 11:46:44 +0200
commit34af6a130370671439da19ef55c2c45a35fd3ad0 (patch)
treea822cd8d8cd5aa7f732dcb71fa20e391872e885a /frontends/ast/simplify.cc
parente1743b3bac8c86f3cf857892dabf66bec5573a7a (diff)
parent652345c9cd41a6a93925477e44a6d7925b0d7584 (diff)
downloadyosys-34af6a130370671439da19ef55c2c45a35fd3ad0.tar.gz
yosys-34af6a130370671439da19ef55c2c45a35fd3ad0.tar.bz2
yosys-34af6a130370671439da19ef55c2c45a35fd3ad0.zip
Merge branch 'master' of github.com:cliffordwolf/yosys
Diffstat (limited to 'frontends/ast/simplify.cc')
-rw-r--r--frontends/ast/simplify.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc
index 68c17271c..1998c12e4 100644
--- a/frontends/ast/simplify.cc
+++ b/frontends/ast/simplify.cc
@@ -464,7 +464,7 @@ bool AstNode::simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage,
if (type == AST_DEFPARAM && !str.empty()) {
size_t pos = str.rfind('.');
if (pos == std::string::npos)
- log_error("Defparam `%s' does not contain a dot (module/parameter seperator) at %s:%d!\n",
+ log_error("Defparam `%s' does not contain a dot (module/parameter separator) at %s:%d!\n",
RTLIL::unescape_id(str).c_str(), filename.c_str(), linenum);
std::string modname = str.substr(0, pos), paraname = "\\" + str.substr(pos+1);
if (current_scope.count(modname) == 0 || current_scope.at(modname)->type != AST_CELL)