Set UNW_TDEP_SP on x86 to ESP

This is similar to what has been done on other archs and resolves an out of
bounds array access elsewhere.
diff --git a/include/libunwind-x86.h b/include/libunwind-x86.h
index 1e321db..84da6e9 100644
--- a/include/libunwind-x86.h
+++ b/include/libunwind-x86.h
@@ -147,7 +147,7 @@
     UNW_TDEP_LAST_REG = UNW_X86_XMM7,
 
     UNW_TDEP_IP = UNW_X86_EIP,
-    UNW_TDEP_SP = UNW_X86_CFA,
+    UNW_TDEP_SP = UNW_X86_ESP,
     UNW_TDEP_EH = UNW_X86_EAX
   }
 x86_regnum_t;