diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-01-22 21:58:18 (GMT) | 
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-01-22 21:58:18 (GMT) | 
| commit | 0d97b9840a45c8c551fb182f6dad4dcf9e81fadd (patch) | |
| tree | c892f33a37d63139a31e3756d39c3081daac92bf /unix/tclUnixCompat.c | |
| parent | 051437e9747e61be6f401b08badd2798717ae878 (diff) | |
| parent | aca98720b64084b27c058e15b3f7bf557ecbb4ab (diff) | |
| download | tcl-0d97b9840a45c8c551fb182f6dad4dcf9e81fadd.zip tcl-0d97b9840a45c8c551fb182f6dad4dcf9e81fadd.tar.gz tcl-0d97b9840a45c8c551fb182f6dad4dcf9e81fadd.tar.bz2  | |
Bug [3601804]: platformCPUID segmentation fault on Darwin
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 e201018..eb673d6 100644 --- a/unix/tclUnixCompat.c +++ b/unix/tclUnixCompat.c @@ -1000,7 +1000,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) : "edi"); +                 : "a"(index) : "edi","ebx");      status = TCL_OK;  #endif      return status;  | 
