trim trailing spaces/clean-up

This commit is contained in:
Steffen Jaeckel 2014-06-12 17:35:54 +02:00
parent bea9b1cc22
commit 86e7c59ff4
41 changed files with 1181 additions and 1176 deletions

View File

@ -154,6 +154,6 @@ zipup: no_oops docs clean
zip -9r tfm-$(VERSION).zip tomsfastmath-$(VERSION)/* ; \ zip -9r tfm-$(VERSION).zip tomsfastmath-$(VERSION)/* ; \
mv -f tfm* ~ ; rm -rf tomsfastmath-$(VERSION) mv -f tfm* ~ ; rm -rf tomsfastmath-$(VERSION)
# $Source: /cvs/libtom/tomsfastmath/makefile,v $ # $Source$
# $Revision: 1.38 $ # $Revision$
# $Date: 2007/03/13 01:23:03 $ # $Date$

View File

@ -103,7 +103,7 @@ timing: $(LIBNAME) demo/test.o
stest: $(LIBNAME) demo/stest.o stest: $(LIBNAME) demo/stest.o
$(CC) $(CFLAGS) demo/stest.o $(LIBNAME_S) -o stest $(CC) $(CFLAGS) demo/stest.o $(LIBNAME_S) -o stest
# $Source: /cvs/libtom/tomsfastmath/makefile.shared,v $ # $Source$
# $Revision: 1.19 $ # $Revision$
# $Date: 2007/03/13 01:23:03 $ # $Date$

View File

@ -11,7 +11,7 @@ comba_sqr_smallgen: comba_sqr_smallgen.c
regen: comba_sqr_gen comba_sqr_smallgen regen: comba_sqr_gen comba_sqr_smallgen
for i in 3 4 6 7 8 9 12 17 20 24 28 32 48 64; do \ for i in 3 4 6 7 8 9 12 17 20 24 28 32 48 64; do \
./comba_sqr_gen $$i > ../sqr/fp_sqr_comba_$$i.c; \ ./comba_sqr_gen $$i | sed -e 's/ *$$//' > ../sqr/fp_sqr_comba_$$i.c; \
done done
./comba_sqr_smallgen > ../sqr/fp_sqr_comba_small_set.c ./comba_sqr_smallgen > ../sqr/fp_sqr_comba_small_set.c

View File

@ -297,8 +297,11 @@ asm( \
#define MULADD(i, j) \ #define MULADD(i, j) \
do { fp_word t; \ do { fp_word t; \
t = (fp_word)c0 + ((fp_word)i) * ((fp_word)j); c0 = t; \ t = (fp_word)c0 + ((fp_word)i) * ((fp_word)j); \
t = (fp_word)c1 + (t >> DIGIT_BIT); c1 = t; c2 += t >> DIGIT_BIT; \ c0 = t; \
t = (fp_word)c1 + (t >> DIGIT_BIT); \
c1 = t; \
c2 += t >> DIGIT_BIT; \
} while (0); } while (0);
#endif #endif

6
updatemakes.sh Normal file → Executable file
View File

@ -3,10 +3,12 @@
bash genlist.sh > tmplist bash genlist.sh > tmplist
perl filter.pl makefile tmplist perl filter.pl makefile tmplist
mv -f tmp.delme makefile sed -e 's/ *$//' < tmp.delme > makefile
rm -f tmp.delme
perl filter.pl makefile.shared tmplist perl filter.pl makefile.shared tmplist
mv -f tmp.delme makefile.shared sed -e 's/ *$//' < tmp.delme > makefile.shared
rm -f tmp.delme
rm -f tmplist rm -f tmplist
rm -f tmp.delme rm -f tmp.delme