]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Fix a shadowed variable warning under icc
[stockfish] / src / search.cpp
index b8c6c952eaac5ca3e7e0176b41231e45312a4ea2..11ae249ba2b88aec9d9db7d5b562236e1ee3fe88 100644 (file)
@@ -2268,15 +2268,15 @@ split_point_start: // At split points actual search starts from here
             threads[threadID].state = THREAD_SEARCHING;
 
             // Here we call search() with SplitPoint template parameter set to true
-            SplitPoint* sp = threads[threadID].splitPoint;
-            Position pos(*sp->pos, threadID);
-            SearchStack* ss = sp->sstack[threadID] + 1;
-            ss->sp = sp;
+            SplitPoint* tsp = threads[threadID].splitPoint;
+            Position pos(*tsp->pos, threadID);
+            SearchStack* ss = tsp->sstack[threadID] + 1;
+            ss->sp = tsp;
 
-            if (sp->pvNode)
-                search<PV, true>(pos, ss, sp->alpha, sp->beta, sp->depth, sp->ply);
+            if (tsp->pvNode)
+                search<PV, true>(pos, ss, tsp->alpha, tsp->beta, tsp->depth, tsp->ply);
             else
-                search<NonPV, true>(pos, ss, sp->alpha, sp->beta, sp->depth, sp->ply);
+                search<NonPV, true>(pos, ss, tsp->alpha, tsp->beta, tsp->depth, tsp->ply);
 
             assert(threads[threadID].state == THREAD_SEARCHING);