From: whitequark Date: Mon, 8 Jul 2019 12:29:08 +0000 (+0000) Subject: genrtlil: emit \src attribute on CaseRule. X-Git-Tag: working-ls180~1217^2~3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b1f400aeb8de657d5fa28c153df14246378df2b1;p=yosys.git genrtlil: emit \src attribute on CaseRule. --- diff --git a/frontends/ast/genrtlil.cc b/frontends/ast/genrtlil.cc index 079fc11e5..571ddd988 100644 --- a/frontends/ast/genrtlil.cc +++ b/frontends/ast/genrtlil.cc @@ -504,6 +504,7 @@ struct AST_INTERNAL::ProcessGenerator RTLIL::CaseRule *backup_case = current_case; current_case = new RTLIL::CaseRule; + current_case->attributes["\\src"] = stringf("%s:%d", child->filename.c_str(), child->linenum); last_generated_case = current_case; addChunkActions(current_case->actions, this_case_eq_ltemp, this_case_eq_rvalue); for (auto node : child->children) {