]> git.sesse.net Git - stockfish/commitdiff
Fix a shadowed variable warning under icc
authorMarco Costalba <mcostalba@gmail.com>
Sat, 16 Oct 2010 11:19:44 +0000 (13:19 +0200)
committerMarco Costalba <mcostalba@gmail.com>
Sat, 16 Oct 2010 14:00:07 +0000 (15:00 +0100)
No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
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);