summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixCompat.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-05-03 12:31:19 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-05-03 12:31:19 (GMT)
commite2532e668c6fa0acfe8a26c27b75d1d068e862a5 (patch)
tree1af98744597d706e888e17d56f9a96c61450f14d /unix/tclUnixCompat.c
parentbfa5a8cd1f13c5913dcfa5264db672616101228a (diff)
parentfd30b7a12eaad501b7b4ffa107c93f58283008b9 (diff)
downloadtcl-e2532e668c6fa0acfe8a26c27b75d1d068e862a5.zip
tcl-e2532e668c6fa0acfe8a26c27b75d1d068e862a5.tar.gz
tcl-e2532e668c6fa0acfe8a26c27b75d1d068e862a5.tar.bz2
Move cpuid testcase from win-specific to generic tests
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;