diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-06 12:15:13 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-06 12:15:13 -0700 |
commit | 83450a94898321a239f67f92e05fb9a246f4dd6d (patch) | |
tree | 18bf391b114bcc9de72f6a64dcf03cdf51c3d23b | |
parent | 3dd0682f298cec18f60c2d9da6417e287a385dd4 (diff) | |
download | yosys-83450a94898321a239f67f92e05fb9a246f4dd6d.tar.gz yosys-83450a94898321a239f67f92e05fb9a246f4dd6d.tar.bz2 yosys-83450a94898321a239f67f92e05fb9a246f4dd6d.zip |
Move muxpack from passes/techmap to passes/opt
-rw-r--r-- | passes/opt/Makefile.inc | 1 | ||||
-rw-r--r-- | passes/opt/muxpack.cc (renamed from passes/techmap/muxpack.cc) | 0 | ||||
-rw-r--r-- | passes/techmap/Makefile.inc | 1 |
3 files changed, 1 insertions, 1 deletions
diff --git a/passes/opt/Makefile.inc b/passes/opt/Makefile.inc index 337fee9e4..ea3646330 100644 --- a/passes/opt/Makefile.inc +++ b/passes/opt/Makefile.inc @@ -14,5 +14,6 @@ OBJS += passes/opt/opt_demorgan.o OBJS += passes/opt/rmports.o OBJS += passes/opt/opt_lut.o OBJS += passes/opt/pmux2shiftx.o +OBJS += passes/opt/muxpack.o endif diff --git a/passes/techmap/muxpack.cc b/passes/opt/muxpack.cc index 9668b0d43..9668b0d43 100644 --- a/passes/techmap/muxpack.cc +++ b/passes/opt/muxpack.cc diff --git a/passes/techmap/Makefile.inc b/passes/techmap/Makefile.inc index 561636080..cf9e198ad 100644 --- a/passes/techmap/Makefile.inc +++ b/passes/techmap/Makefile.inc @@ -37,7 +37,6 @@ OBJS += passes/techmap/attrmap.o OBJS += passes/techmap/zinit.o OBJS += passes/techmap/dff2dffs.o OBJS += passes/techmap/flowmap.o -OBJS += passes/techmap/muxpack.o endif GENFILES += passes/techmap/techmap.inc |