aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-02-07 12:32:08 -0800
committerGitHub <noreply@github.com>2020-02-07 12:32:08 -0800
commitbe8bc63f8443ea0aa2261bbbe4f30de476fa4a61 (patch)
tree508316620c3d31e7fb8ea11eadf1fd667e9e63db /passes/techmap
parent89adef352fde57fa599d66fe404c3c2b9e607a7f (diff)
parentaffae35847c45e708436b9142cfa7d7eb6b5aec6 (diff)
downloadyosys-be8bc63f8443ea0aa2261bbbe4f30de476fa4a61.tar.gz
yosys-be8bc63f8443ea0aa2261bbbe4f30de476fa4a61.tar.bz2
yosys-be8bc63f8443ea0aa2261bbbe4f30de476fa4a61.zip
Merge pull request #1687 from YosysHQ/eddie/fix_ystests
Fix shiftx2mux, fix yosys-tests
Diffstat (limited to 'passes/techmap')
-rw-r--r--passes/techmap/abc9_exe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/abc9_exe.cc b/passes/techmap/abc9_exe.cc
index 71221951c..d3db0065c 100644
--- a/passes/techmap/abc9_exe.cc
+++ b/passes/techmap/abc9_exe.cc
@@ -471,7 +471,7 @@ struct Abc9ExePass : public Pass {
// handle -lut / -luts args
if (!lut_arg.empty()) {
string arg = lut_arg;
- if (arg.find_first_not_of("0123456789:") == std::string::npos) {
+ if (arg.find_first_not_of("0123456789:,") == std::string::npos) {
size_t pos = arg.find_first_of(':');
int lut_mode = 0, lut_mode2 = 0;
if (pos != string::npos) {