Update codebase to remove clang warnings (and a couple of legit errors master
authorScott Gasch <[email protected]>
Thu, 4 Oct 2018 03:38:03 +0000 (20:38 -0700)
committerScott Gasch <[email protected]>
Thu, 4 Oct 2018 03:38:03 +0000 (20:38 -0700)
it found)

src/GNUmakefile
src/book.c
src/chess.h
src/egtb.cpp
src/eval.c
src/ics.c
src/typhoon.log [deleted file]
src/util.c

index 1ef7fc90df1323f66307a4b69de4eae43f5aa6ff..a88b58b570861d576a15d79a1cf17fa84243589e 100644 (file)
@@ -19,8 +19,8 @@
 #
 # $Id$
 #
-CC             =       gcc
-CXX            =       g++
+CC             =       clang
+CXX            =       clang++
 NASM           =       yasm
 ifdef OSX
  LIBRARIES     =       -pthread -lc
@@ -45,15 +45,15 @@ RM          =       /bin/rm
 #
 ifdef ASM
  ifdef SIXTYFOUR
-  PROFILE      =       -S -fverbose-asm -std=gnu99 -D_X64_
+  PROFILE      =       -S -fverbose-asm -D_X64_
  else
-  PROFILE      =       -S -fverbose-asm -std=gnu99 -D_X86_
+  PROFILE      =       -S -fverbose-asm -D_X86_
  endif
 else
  ifdef SIXTYFOUR
-  PROFILE      =       -std=gnu99 -D_X64_
+  PROFILE      =       -D_X64_
  else
-  PROFILE      =       -std=gnu99 -D_X86_
+  PROFILE      =       -D_X86_
  endif
 endif
 
index 217b4adb38a4622630a60f1d4107b8f0ffd4c700..b9cb6942118a18e090e608d8aa5ec5082adb659f 100755 (executable)
@@ -1831,7 +1831,7 @@ Return value:
         // 
         else
         {
-            memset(pEntry, 0, sizeof(pEntry));
+            memset(pEntry, 0, sizeof(*pEntry));
             pEntry->u64Sig = entry.u64Sig;
             pEntry->mvNext = entry.mvNext;
             pEntry->u64NextSig = entry.u64NextSig;
index c8157016f3480a73bdda9b563a03eed4a496a1fb..2bfec4d67479cd190f28afb5f51302420ebbe29a 100755 (executable)
@@ -1233,8 +1233,8 @@ _assert(CHAR *szFile, ULONG uLine);
                                     RANK1(c) || \
                                     FILEA(c) || \
                                     FILEH(c))
-#define CORNER_DISTANCE(c)         (MAX(MIN((ULONG)abs(RANK(c) - 7), RANK(c)),\
-                                        MIN((ULONG)abs(FILE(c) - 7), FILE(c))))
+#define CORNER_DISTANCE(c)         (MAX(MIN((ULONG)(RANK(c) - 7), RANK(c)),\
+                                        MIN((ULONG)(FILE(c) - 7), FILE(c))))
 #define IN_CORNER(c)               (((c) == A8) || \
                                        ((c) == A1) || \
                                        ((c) == H8) || \
index bc39636f6e746ece9aa7926a98110dddc25e951d..fd9c4bbf5a68e6c31beb354511dcb1a4a73d0aa2 100644 (file)
@@ -6279,7 +6279,7 @@ static void VCheckSize
     if (cb != cbOk1 && cb != cbOk2)
         {
         printf ("*** %s corrupted "
-                DEC_INDEX_FORMAT" "DEC_INDEX_FORMAT" "DEC_INDEX_FORMAT"\n",
+                DEC_INDEX_FORMAT " " DEC_INDEX_FORMAT " " DEC_INDEX_FORMAT "\n",
                 rgchTbName, cbOk1, cbOk2, cb);
         exit (1);
         }
index 944642a370ad88d2e4683d67ad46d4a9b17d2e4b..b6a77928d2e9675ae057c9132fa9de057025940e 100755 (executable)
@@ -699,7 +699,7 @@ ExportEvalDNA()
 }
 
 FLAG
-WriteEvalDNA(char *szFilename) 
+WriteEvalDNA(char *szFilename)
 {
     FILE *p = NULL;
     char *q = NULL;
@@ -710,7 +710,7 @@ WriteEvalDNA(char *szFilename)
     if (!p) goto end;
     q = ExportEvalDNA();
     if (!q) goto end;
-    fprintf(p, q);
+    fprintf(p, "%s", q);
     fRet = TRUE;
  end:
     if (p) fclose(p);
@@ -719,7 +719,7 @@ WriteEvalDNA(char *szFilename)
 }
 
 FLAG
-ImportEvalDNA(char *p) 
+ImportEvalDNA(char *p)
 {
     ULONG u, v;
 
index 5a8d2cd50b23f4c189a7b0b389159b7f9c48ce52..fba1af63cd33f93974f8a9f989855f8c4e4e96ce 100755 (executable)
--- a/src/ics.c
+++ b/src/ics.c
@@ -257,7 +257,7 @@ Return value:
         //
         // Handle double jumps.
         //
-        if (abs(RANK(cTo) - RANK(cFrom)) > 1)
+        if (RANK(cTo) - RANK(cFrom) > 1)
         {
             mv.bvFlags = MOVE_FLAG_SPECIAL;
         }
diff --git a/src/typhoon.log b/src/typhoon.log
deleted file mode 100644 (file)
index a436792..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-Typhoon 1.00 (built on Sep 11 2014 08:20:24):
-    Copyright (C) 2000-2007, Scott Gasch ([email protected])
-    $Id: chess.h 354 2008-06-30 05:10:08Z scott $
-    GCC 4.2.1 20070831 patched [FreeBSD]
-    Make profile used: -std=gnu99 -D_X64_ -g -O3 -fexpensive-optimizations -ffast-math -finline-functions -m64 -DMP -DSMP
-    Multiprocessor enabled; 1 searcher thread
-    Hash sizes: 1 Mb (main), 11 Mb / thread (pawn), 48 Mb / thread (eval)
-    QCheckPlies: 1
-    FutilityBase: 50
-    Logging Eval DNA.
--1,90,81,73,67,62,57,52,50,50,50,50,50,50,50,50,-1,-1,125,117,109,100,91,84,78,71,66,66,66,66,66,66,66,-1,-1,150,132,124,116,109,102,94,87,77,77,77,77,77,77,77,-1
--43,-15,0,3,6,10,15,21,28,-63,-25,0,4,9,14,19,25,32,-10,0,0,7,15,20,24,29,36
-0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3,4,5,6,6,7,7,7,7,8,8,8,8,8,8,8,8
-8,8,8,8,8,8,8,8,8,7,7,7,7,6,6,5,4,3,3,3,2,2,2,1,1,1,0,0,0,0,0,0
-8,8,8,8,8,8,7,7,7,6,7,5,4,5,4,3,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,0,0,0,0,0,0,-8,0,0,0,0,0,0,0,0,-8,0,5,5,5,5,0,-8,0,0,0,0,0,0,0,0,-8,0,5,9,9,5,0,-8,0,0,0,0,0,0,0,0,-8,0,5,9,9,5,0,-8,0,0,0,0,0,0,0,0,-8,0,5,5,5,5,0,-8,0,0,0,0,0,0,0,0,-8,0,0,0,0,0,0,-8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-5,-5,-7,-7,-5,-5,-7,0,0,0,0,0,0,0,0,-5,-4,-4,-5,-5,-4,-4,-5,0,0,0,0,0,0,0,0,-4,-3,-3,-4,-4,-3,-3,-4,0,0,0,0,0,0,0,0,-4,-3,-3,-4,-4,-3,-3,-4,0,0,0,0,0,0,0,0,-5,-4,-4,-5,-5,-4,-4,-5,0,0,0,0,0,0,0,0,-7,-5,-5,-7,-7,-5,-5,-7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-12,-9,-9,-11,-11,-9,-9,-12,0,0,0,0,0,0,0,0,-9,-7,-7,-9,-9,-7,-7,-9,0,0,0,0,0,0,0,0,-7,-6,-6,-7,-7,-6,-6,-7,0,0,0,0,0,0,0,0,-7,-6,-6,-7,-7,-6,-6,-7,0,0,0,0,0,0,0,0,-9,-7,-7,-9,-9,-7,-7,-9,0,0,0,0,0,0,0,0,-12,-9,-9,-11,-11,-9,-9,-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-0,-32,-65,-99,-134,-170,-207,-222,-250,0,-23,-47,-76,-108,-144,-184,-200,-216,0,-13,-23,-34,-46,-64,-86,-111,-138,0,-7,-13,-25,-39,-55,-73,-95,-121
-0,-3,-7,-9,-16,-35,-50,-85,-100
-0,-7,-8,-9,-10,-10,-9,-8,-7
--5
--11
-0,0,162,111,62,36,18,13,0,0,0,13,18,36,62,111,162,0
-0,0,0,48,34,22,13,9,0,0,0,9,13,22,34,48,0,0
-0,0,96,74,48,21,10,5,0,0,0,5,10,21,48,74,96,0
-0,0,60,40,13,6,3,1,0,0,0,1,3,6,13,40,60,0
-0,0,7,14,21,28,34,41,55
-60,-1,-1,37,-1,43,19,-1,14,9,20,4,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-800
-0,-6,-10,-16,-22
-33
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,52,51,50,49,48,47,45,43,41,40,40,40,40,40,40,40
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-6,-7,-7,-7,-7,-6,-4,0,0,0,0,0,0,0,0,-6,-7,-9,-8,-8,-9,-7,-6,0,0,0,0,0,0,0,0,-7,-8,-10,-11,-11,-10,-8,-7,0,0,0,0,0,0,0,0,-7,-8,-10,-11,-11,-10,-8,-7,0,0,0,0,0,0,0,0,-6,-7,-9,-8,-8,-9,-7,-6,0,0,0,0,0,0,0,0,-4,-6,-7,-7,-7,-7,-6,-4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,-3,-4,-4,-4,-4,-4,-4,-3,0,0,0,0,0,0,0,0,-4,-5,-7,-8,-8,-7,-5,-4,0,0,0,0,0,0,0,0,-4,-5,-7,-8,-8,-7,-5,-4,0,0,0,0,0,0,0,0,-3,-4,-4,-4,-4,-4,-4,-3,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
--22,-14,-10,-5,-1,0,1,3,4,5,6,7,8,9
--10,-4,1,3,4,5,5,5
-0,33,28,18,8,4,0,-10,-16
-10,10,10,9,9,8,8,7,7,6,5,4,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
--12,-8,-8,-8,-8,-8,-8,-12,0,0,0,0,0,0,0,0,-8,-2,-2,0,0,-2,-2,-8,0,0,0,0,0,0,0,0,-8,-2,4,5,5,4,-2,-8,0,0,0,0,0,0,0,0,-8,-2,5,8,8,5,-2,-8,0,0,0,0,0,0,0,0,-8,-2,5,8,8,5,-2,-8,0,0,0,0,0,0,0,0,-8,-2,4,5,5,4,-2,-8,0,0,0,0,0,0,0,0,-8,-2,-2,0,0,-2,-2,-8,0,0,0,0,0,0,0,0,-12,-8,-8,-8,-8,-8,-8,-12,0,0,0,0,0,0,0,0
-0,15,12,9,4,0,0,0,0
-0,25,19,14,6,0,0,0,0
-0,12,11,9,6,3,0,0,0,0,0,0,0,3,6,9,11,12
--17,-10,-6,0,3,5,7,8,8
-0,4,8
-0,0,0,0,0,0,0,0,0,0,1,2,4,6,9,11,12,13,15,17,19,21,21,22,22,23,23,24,24,25,25,26,27
-24,22,17,14,13,13,12,12
-12,11,9,9,8,8,8,7
-13,12,11,11,9,9,9,8
-0,0,25,17,12,6,1,0,0,0,0,0,1,6,12,17,25,0
-0,0,-22,-16,-13,-9,-5,-3,0,0,0,-3,-5,-9,-13,-16,-22,0
--40
-22
-55,51,44,38,33,27,22,16,7,1,-3,-6,-9,-12,-18,-22,-25
-7
-4
--28,-24,-20,-14,-7,-2,0,4,8,12,15,17,19,21,22
--15,-6,0,4,8,8,8,8
--30,-26,-22,-17,-11,-8,-4,-2,-1,2,4,7,10,12,14,15,16,17,18,19,20,20,21,21,22,22,23,23
-0,-14,-22,-26,-33
-0,34,28,22,19,17,16,15
-8
-1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,5,7,7,5,3,1,0,0,0,0,0,0,0,0,3,5,13,15,15,13,5,3,0,0,0,0,0,0,0,0,5,7,17,23,23,17,7,5,0,0,0,0,0,0,0,0,5,7,17,23,23,17,7,5,0,0,0,0,0,0,0,0,3,5,13,15,15,13,5,3,0,0,0,0,0,0,0,0,1,3,5,7,7,5,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-0,-4,-8,-12,-16,-20,-25,-31,-38,-50,-63,-76,-90,-105,-120,-135,-150,-165,-180,-195,-210,-225,-240,-255,-270,-290,-310,-330,-350,-370,-390,-410,-440,-470,-500,-500,-500,-500,-500,-500,-500,-500
--23
index 599c16dde572600c1efdc15d3d40c24294b1d21f..34b3739d51ec22b6395e05f21a607de21b4f74e6 100755 (executable)
@@ -426,7 +426,7 @@ Return value:
         //
         // Skip chunks
         //
-        while(!isspace(*p) && &p) p++;
+        while(!isspace(*p) && *p) p++;
         if (!*p) return(NULL);
     }
     while(1);
@@ -702,13 +702,13 @@ Return value:
     // Send to logfile
     //
     if (NULL != g_pfLogfile) {
-        fprintf(g_pfLogfile, buf);
+        fprintf(g_pfLogfile, "%s", buf);
     }
 
     //
     // Send to stdout
     //
-    fprintf(stdout, buf);
+    fprintf(stdout, "%s", buf);
     fflush(stdout);
 }
 
@@ -747,7 +747,7 @@ Return value:
     // Send to logfile
     //
     if (NULL != g_pfLogfile) {
-        fprintf(g_pfLogfile, buf);
+        fprintf(g_pfLogfile, "%s", buf);
         fflush(g_pfLogfile);
     }
 }
@@ -788,14 +788,14 @@ Return value:
     // Send it to logfile
     //
     if (NULL != g_pfLogfile) {
-        fprintf(g_pfLogfile, buf);
+        fprintf(g_pfLogfile, "%s", buf);
         fflush(g_pfLogfile);
     }
 
     //
     // Send it to stderr
     //
-    fprintf(stderr, buf);
+    fprintf(stderr, "%s", buf);
     fflush(stderr);
 }