]> www.ginac.de Git - cln.git/commitdiff
* src/polynomial/elem/cl_UP_GF2.h (gf2_mul_table): define for sparc64.
authorRichard Kreckel <kreckel@ginac.de>
Mon, 17 Dec 2007 19:48:58 +0000 (19:48 +0000)
committerRichard Kreckel <kreckel@ginac.de>
Mon, 17 Dec 2007 19:48:58 +0000 (19:48 +0000)
ChangeLog
src/polynomial/elem/cl_UP_GF2.h

index f68bce52236d54fd95d2b85bf68f7f78419eb347..817fb3bbb36a765d0597747ad2db3686de483bf9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-12-17  Richard B. Kreckel  <kreckel@ginac.de>
+
+       * src/polynomial/elem/cl_UP_GF2.h (gf2_mul_table): define for sparc64.
+
 2007-12-04  Richard B. Kreckel  <kreckel@ginac.de>
 
        * include/cln/types.h ([su]intE): 64-bit exponents for MIPS and RS6000.
index 32d3866f46c65eb3828e1d9be134533ef2ffcd1e..0fb5e658eb4a4bf06ea15a86d7e14262c66c208f 100644 (file)
@@ -95,7 +95,7 @@ static const _cl_UP gf2_uminus (cl_heap_univpoly_ring* UPR, const _cl_UP& x)
        return x;
 }
 
-#if !(defined(__sparc__) || defined(__sparc64__))
+#if !defined(__sparc__) || defined(__sparc64__)
 // Multiplication of polynomials over GF(2) can unfortunately not profit
 // from hardware multiply instructions. Use a table instead.
 // This is a 2^8 x 2^4 table. Maybe a 2^6 x 2^6 table would be better?