diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-02 14:12:08 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-02 14:12:08 (GMT) |
commit | 5098f5307b77d3fec508f0cfe9e24e867120b4bf (patch) | |
tree | 0ccf30bc9f6779ce134657a32fb1b8edab0739eb | |
parent | 8f59032301d90407ca472bd7f347d36abcc4c9d6 (diff) | |
download | tcl-5098f5307b77d3fec508f0cfe9e24e867120b4bf.zip tcl-5098f5307b77d3fec508f0cfe9e24e867120b4bf.tar.gz tcl-5098f5307b77d3fec508f0cfe9e24e867120b4bf.tar.bz2 |
switch off - temporary - 32-bit specific assembler
-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 0456faf..1043115 100644 --- a/unix/tclUnixCompat.c +++ b/unix/tclUnixCompat.c @@ -692,7 +692,7 @@ TclWinCPUID( { int status = TCL_ERROR; -#ifdef HAVE_CPUID +#if defined(HAVE_CPUID) && defined(__CYGWIN__) __asm__ __volatile__("pushl %%ebx \n\t" /* save %ebx */ "cpuid \n\t" "movl %%ebx, %1 \n\t" /* save what cpuid just put in %ebx */ |