Differences From Artifact [e711b00c56]:
- File unix/tclUnixCompat.c — part of check-in [775ac422d2] at 2020-11-26 15:15:36 on branch main — Merge 8.7 (user: jan.nijtmans size: 23827) [more...]
To Artifact [af2c1975ea]:
- File unix/tclUnixCompat.c — part of check-in [6ff6cd4286] at 2021-02-17 15:55:13 on branch main — Merge 8.7 (user: jan.nijtmans size: 23869) [more...]
| ︙ | |||
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 | 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 | + + + |
__asm__ __volatile__("mov %%ebx, %%esi \n\t" /* save %ebx */
"cpuid \n\t"
"xchg %%esi, %%ebx \n\t" /* restore the old %ebx */
: "=a"(regsPtr[0]), "=S"(regsPtr[1]), "=c"(regsPtr[2]), "=d"(regsPtr[3])
: "a"(index));
#endif
status = TCL_OK;
#else
(void)index;
(void)regsPtr;
#endif
return status;
}
/*
* Local Variables:
* mode: c
|
| ︙ |