diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-12-05 09:02:13 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-05 09:02:13 -0800 |
commit | 50a94ce4fc64ef4b95dba4119e82df01680b0617 (patch) | |
tree | c5dff0100358efc89b90995603b9b4365777e4bb /passes/opt/Makefile.inc | |
parent | 11323665aff4c4af612f12fb3dda5096ace26a7d (diff) | |
parent | 45cb6200af13469724de42656f2c1f0f61c8766a (diff) | |
download | yosys-50a94ce4fc64ef4b95dba4119e82df01680b0617.tar.gz yosys-50a94ce4fc64ef4b95dba4119e82df01680b0617.tar.bz2 yosys-50a94ce4fc64ef4b95dba4119e82df01680b0617.zip |
Merge pull request #717 from whitequark/opt_lut
Add a new opt_lut pass, which combines inefficiently packed LUTs
Diffstat (limited to 'passes/opt/Makefile.inc')
-rw-r--r-- | passes/opt/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/passes/opt/Makefile.inc b/passes/opt/Makefile.inc index 0d01e9d35..0f596b1f4 100644 --- a/passes/opt/Makefile.inc +++ b/passes/opt/Makefile.inc @@ -6,6 +6,7 @@ OBJS += passes/opt/opt_reduce.o OBJS += passes/opt/opt_rmdff.o OBJS += passes/opt/opt_clean.o OBJS += passes/opt/opt_expr.o +OBJS += passes/opt/opt_lut.o ifneq ($(SMALL),1) OBJS += passes/opt/share.o |