summaryrefslogtreecommitdiffstats
path: root/win/tclWin32Dll.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2004-09-01 17:41:03 (GMT)
committerhobbs <hobbs>2004-09-01 17:41:03 (GMT)
commit18879dfdf57be6b6a5ca6a892c400cd0e005d77a (patch)
treeb13e968880a6a936f03775d96383e5f6670991d0 /win/tclWin32Dll.c
parent2a6660d57de536e5da57cbf735bec60b9013bdc8 (diff)
downloadtcl-18879dfdf57be6b6a5ca6a892c400cd0e005d77a.zip
tcl-18879dfdf57be6b6a5ca6a892c400cd0e005d77a.tar.gz
tcl-18879dfdf57be6b6a5ca6a892c400cd0e005d77a.tar.bz2
* win/tclWin32Dll.c (TclWinCPUID): need _asm for WIN64 (Itanium),
until we have it, just return unknown. [Bug 1020445]
Diffstat (limited to 'win/tclWin32Dll.c')
-rw-r--r--win/tclWin32Dll.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWin32Dll.c b/win/tclWin32Dll.c
index 7c80eea..c4f6e5d 100644
--- a/win/tclWin32Dll.c
+++ b/win/tclWin32Dll.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWin32Dll.c,v 1.38 2004/06/29 10:07:57 vincentdarley Exp $
+ * RCS: @(#) $Id: tclWin32Dll.c,v 1.39 2004/09/01 17:41:03 hobbs Exp $
*/
#include "tclWinInt.h"
@@ -1169,7 +1169,7 @@ TclWinCPUID( unsigned int index, /* Which CPUID value to retrieve */
# endif
-#elif defined(_MSC_VER)
+#elif defined(_MSC_VER) && !defined(_WIN64)
/* Define a structure in the stack frame to hold the registers */
@@ -1212,7 +1212,7 @@ TclWinCPUID( unsigned int index, /* Which CPUID value to retrieve */
#else
/* Don't know how to do assembly code for
- * this compiler */
+ * this compiler and/or architecture */
#endif
return status;
}