[Cryptech-Commits] [core/math/modexp] 01/01: Changed name of files to reflect that the adder and the shifters are now not specifically working on 32-bit operands. HEADSUP: This breaks builds that use the old file names.

git at cryptech.is git at cryptech.is
Tue Jun 23 14:59:01 UTC 2015


This is an automated email from the git hooks/post-receive script.

joachim at secworks.se pushed a commit to branch perfopt
in repository core/math/modexp.

commit feeb054a16bbb3ed6111ac2a165c6266b20750cb
Author: Joachim Strömbergson <joachim at secworks.se>
Date:   Tue Jun 23 16:58:45 2015 +0200

    Changed name of files to reflect that the adder and the shifters are now not specifically working on 32-bit operands. HEADSUP: This breaks builds that use the old file names.
---
 src/rtl/{adder32.v => adder.v} | 0
 src/rtl/{shl32.v => shl.v}     | 0
 src/rtl/{shr32.v => shr.v}     | 0
 toolruns/Makefile              | 2 +-
 4 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/rtl/adder32.v b/src/rtl/adder.v
similarity index 100%
rename from src/rtl/adder32.v
rename to src/rtl/adder.v
diff --git a/src/rtl/shl32.v b/src/rtl/shl.v
similarity index 100%
rename from src/rtl/shl32.v
rename to src/rtl/shl.v
diff --git a/src/rtl/shr32.v b/src/rtl/shr.v
similarity index 100%
rename from src/rtl/shr32.v
rename to src/rtl/shr.v
diff --git a/toolruns/Makefile b/toolruns/Makefile
index 268af7f..3512a3c 100755
--- a/toolruns/Makefile
+++ b/toolruns/Makefile
@@ -44,7 +44,7 @@ LINT = verilator
 LINTFLAGS = --lint-only -Wall
 
 # Sources.
-COMMON_SRC = ../src/rtl/adder32.v ../src/rtl/shl32.v ../src/rtl/shr32.v \
+COMMON_SRC = ../src/rtl/adder.v ../src/rtl/shl.v ../src/rtl/shr.v \
 	../src/rtl/blockmem1r1w.v ../src/rtl/blockmem2r1w.v \
 	../src/rtl/blockmem2r1wptr.v  ../src/rtl/blockmem2rptr1w.v
 



More information about the Commits mailing list