diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-02-07 08:27:45 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-02-07 08:27:45 -0800 |
commit | e6bb7b0782323f92568f1ebb816f31f9191cd211 (patch) | |
tree | 3f125b8f99a3226b4efcfd663e830a0bd739d00c /passes | |
parent | 89adef352fde57fa599d66fe404c3c2b9e607a7f (diff) | |
download | yosys-e6bb7b0782323f92568f1ebb816f31f9191cd211.tar.gz yosys-e6bb7b0782323f92568f1ebb816f31f9191cd211.tar.bz2 yosys-e6bb7b0782323f92568f1ebb816f31f9191cd211.zip |
Fix misc.abc9.abc9_abc9_luts
Diffstat (limited to 'passes')
-rw-r--r-- | passes/techmap/abc9_exe.cc | 2 |
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) { |