diff options
author | whitequark <whitequark@whitequark.org> | 2020-12-23 23:36:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-23 23:36:13 +0000 |
commit | 54466dc653910307af40bf6955df9c8b6126bf48 (patch) | |
tree | 2d64f2b62253f00db7e4ee4327b2fcf4f8425836 | |
parent | deff6a9546699da5fc37e2fba622862daa120fd8 (diff) | |
parent | 84c0b5c6904ebc317daee637bbf70af5c468c7aa (diff) | |
download | yosys-54466dc653910307af40bf6955df9c8b6126bf48.tar.gz yosys-54466dc653910307af40bf6955df9c8b6126bf48.tar.bz2 yosys-54466dc653910307af40bf6955df9c8b6126bf48.zip |
Merge pull request #2502 from ldoolitt/master
passes/pmgen/pmgen.py: trivial change to remove C++ compiler warnings
-rw-r--r-- | passes/pmgen/pmgen.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |