summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixCompat.c
diff options
context:
space:
mode:
authorjan.nijtmans <jan.nijtmans@noemail.net>2012-05-03 12:31:19 (GMT)
committerjan.nijtmans <jan.nijtmans@noemail.net>2012-05-03 12:31:19 (GMT)
commitf4f56409ef5e8188f1ae7c6cac725aece6bcd984 (patch)
tree1af98744597d706e888e17d56f9a96c61450f14d /unix/tclUnixCompat.c
parent3f2b27f0aa2d980e1a04bec178aa503f92c334ad (diff)
parent331177cb6e15452a41dee590ea661a8490ec517c (diff)
downloadtcl-f4f56409ef5e8188f1ae7c6cac725aece6bcd984.zip
tcl-f4f56409ef5e8188f1ae7c6cac725aece6bcd984.tar.gz
tcl-f4f56409ef5e8188f1ae7c6cac725aece6bcd984.tar.bz2
Move cpuid testcase from win-specific to generic tests
FossilOrigin-Name: 05e03611b4dc4df424998bebb80d4f77271611f3
Diffstat (limited to 'unix/tclUnixCompat.c')
-rw-r--r--unix/tclUnixCompat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixCompat.c b/unix/tclUnixCompat.c
index d9d5052..f582c0c 100644
--- a/unix/tclUnixCompat.c
+++ b/unix/tclUnixCompat.c
@@ -826,7 +826,7 @@ TclWinCPUID(
"mov %%ebx, %%esi \n\t" /* save what cpuid just put in %ebx */
"mov %%edi, %%ebx \n\t" /* restore the old %ebx */
: "=a"(regsPtr[0]), "=S"(regsPtr[1]), "=c"(regsPtr[2]), "=d"(regsPtr[3])
- : "a"(index));
+ : "a"(index) : "edi");
status = TCL_OK;
#endif
return status;