diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-05-03 13:10:09 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-05-03 13:10:09 (GMT) |
| commit | d8840f5bbe8889570efd921db3052f7abedce333 (patch) | |
| tree | 8a428c23c89df13b9d208f9c8b7194e6a8a331de /unix/tclUnixCompat.c | |
| parent | 9946f5d4008c64cec02810650afa3f031831aa00 (diff) | |
| parent | 17b6e43ab63fe9681ca559dae1e3c5f88250d1dc (diff) | |
| download | tcl-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.c | 2 |
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; |
