]> granicus.if.org Git - yasm/commitdiff
Move CPU_64 and CPU_Not64 to bits 30 and 31 to avoid CPU_EM64T bit conflict
authorPeter Johnson <peter@tortall.net>
Sun, 10 Sep 2006 19:50:48 +0000 (19:50 -0000)
committerPeter Johnson <peter@tortall.net>
Sun, 10 Sep 2006 19:50:48 +0000 (19:50 -0000)
and allow for a few more bits without constantly moving these two.

svn path=/trunk/yasm/; revision=1612

modules/arch/x86/x86arch.h

index eb896544aa5c25c4b2924923bd950bb6ac00d813..46267b0ce192eedd806f1787fc8134f42e3dc6e4 100644 (file)
@@ -62,8 +62,8 @@
 /* Technically not CPU capabilities, they do affect what instructions are
  * available.  These are tested against BITS==64.
  */
-#define CPU_64     (1UL<<26)   /* Only available in 64-bit mode */
-#define CPU_Not64   (1UL<<27)  /* Not available (invalid) in 64-bit mode */
+#define CPU_64     (1UL<<30)   /* Only available in 64-bit mode */
+#define CPU_Not64   (1UL<<31)  /* Not available (invalid) in 64-bit mode */
 
 typedef struct yasm_arch_x86 {
     yasm_arch_base arch;       /* base structure */