aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/common
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-11-12 10:24:12 +0100
committerGitHub <noreply@github.com>2019-11-12 10:24:12 +0100
commite0ba78bdf2d65ace45be575de6a1cc43baae7f22 (patch)
treeb518fa47c9a27aa37da0deceb66313d769e14c7c /techlibs/common
parent1d148491c5a9b816297c08e5ea3a98ff0bd3623d (diff)
parent3e0ffe05a79d3196b3644cddf422edb927673b04 (diff)
downloadyosys-e0ba78bdf2d65ace45be575de6a1cc43baae7f22.tar.gz
yosys-e0ba78bdf2d65ace45be575de6a1cc43baae7f22.tar.bz2
yosys-e0ba78bdf2d65ace45be575de6a1cc43baae7f22.zip
Merge pull request #1484 from YosysHQ/clifford/cmp2luteqne
Do not map $eq and $ne in cmp2lut, only proper arithmetic cmp
Diffstat (limited to 'techlibs/common')
-rw-r--r--techlibs/common/cmp2lut.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/common/cmp2lut.v b/techlibs/common/cmp2lut.v
index 0d0757767..1c8192b85 100644
--- a/techlibs/common/cmp2lut.v
+++ b/techlibs/common/cmp2lut.v
@@ -7,7 +7,7 @@
// with n <= k inputs should be techmapped in this way, because this shortens the critical path
// from n to 1 by avoiding carry chains.
-(* techmap_celltype = "$eq $ne $lt $le $gt $ge" *)
+(* techmap_celltype = "$lt $le $gt $ge" *)
module _90_lut_cmp_ (A, B, Y);
parameter A_SIGNED = 0;