From: Larry Doolittle Date: Wed, 23 Dec 2020 22:38:25 +0000 (-0800) Subject: passes/pmgen/pmgen.py: trivial change to remove C++ compiler warnings X-Git-Tag: working-ls180~147^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=84c0b5c6904ebc317daee637bbf70af5c468c7aa;p=yosys.git passes/pmgen/pmgen.py: trivial change to remove C++ compiler warnings Verified that the result still builds and passes self-tests --- diff --git a/passes/pmgen/pmgen.py b/passes/pmgen/pmgen.py index db827ee82..6e2fabeeb 100644 --- a/passes/pmgen/pmgen.py +++ b/passes/pmgen/pmgen.py @@ -453,7 +453,7 @@ with open(outfile, "w") as f: print(" SigSpec port(Cell *cell, IdString portname) {", file=f) print(" try {", file=f) print(" return sigmap(cell->getPort(portname));", file=f) - print(" } catch(std::out_of_range) { log_error(\"Accessing non existing port %s\\n\",portname.c_str()); }", file=f) + print(" } catch(std::out_of_range&) { log_error(\"Accessing non existing port %s\\n\",portname.c_str()); }", file=f) print(" }", file=f) print("", file=f) print(" SigSpec port(Cell *cell, IdString portname, const SigSpec& defval) {", file=f) @@ -464,7 +464,7 @@ with open(outfile, "w") as f: print(" Const param(Cell *cell, IdString paramname) {", file=f) print(" try {", file=f) print(" return cell->getParam(paramname);", file=f) - print(" } catch(std::out_of_range) { log_error(\"Accessing non existing parameter %s\\n\",paramname.c_str()); }", file=f) + print(" } catch(std::out_of_range&) { log_error(\"Accessing non existing parameter %s\\n\",paramname.c_str()); }", file=f) print(" }", file=f) print("", file=f) print(" Const param(Cell *cell, IdString paramname, const Const& defval) {", file=f)