diff options
author | Archie <ac11018@ic.ac.uk> | 2022-10-02 21:59:46 +0200 |
---|---|---|
committer | Archie <ac11018@ic.ac.uk> | 2022-10-02 22:05:51 +0200 |
commit | d29606532a15ae8e0c8d6c3591ccb36652d7339b (patch) | |
tree | c17d7f68fdc426e8c47b0eb261be0313915dbccf /frontends | |
parent | 15a0697c70e14d6277e26f6fa21898be5a8f6ff8 (diff) | |
download | yosys-d29606532a15ae8e0c8d6c3591ccb36652d7339b.tar.gz yosys-d29606532a15ae8e0c8d6c3591ccb36652d7339b.tar.bz2 yosys-d29606532a15ae8e0c8d6c3591ccb36652d7339b.zip |
Changing error reason string to be based on lut input plane limit constant.
Diffstat (limited to 'frontends')
-rw-r--r-- | frontends/blif/blifparse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/blif/blifparse.cc b/frontends/blif/blifparse.cc index 52742660e..fe4c9078a 100644 --- a/frontends/blif/blifparse.cc +++ b/frontends/blif/blifparse.cc @@ -517,7 +517,7 @@ void parse_blif(RTLIL::Design *design, std::istream &f, IdString dff_name, bool } else if (input_sig.size() > lut_input_plane_limit) { - err_reason = stringf("names' input plane must have fewer than 13 signals."); + err_reason = stringf("names' input plane must have fewer than %d signals.", lut_input_plane_limit + 1); goto error_with_reason; } else |