summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixCompat.c
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2012-05-03 13:10:09 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2012-05-03 13:10:09 (GMT)
commitd8840f5bbe8889570efd921db3052f7abedce333 (patch)
tree8a428c23c89df13b9d208f9c8b7194e6a8a331de /unix/tclUnixCompat.c
parent9946f5d4008c64cec02810650afa3f031831aa00 (diff)
parent17b6e43ab63fe9681ca559dae1e3c5f88250d1dc (diff)
downloadtcl-d8840f5bbe8889570efd921db3052f7abedce333.zip
tcl-d8840f5bbe8889570efd921db3052f7abedce333.tar.gz
tcl-d8840f5bbe8889570efd921db3052f7abedce333.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 792d6da..3818121 100644
--- a/unix/tclUnixCompat.c
+++ b/unix/tclUnixCompat.c
@@ -996,7 +996,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;