Move 'temporary' bits so they don't conflict with windows/cygwin/dgux bits
authorMichael Meissner <meissner@cygnus.com>
Sun, 5 Sep 1999 23:14:15 +0000 (23:14 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Sun, 5 Sep 1999 23:14:15 +0000 (23:14 +0000)
From-SVN: r29132

gcc/ChangeLog
gcc/config/i386/i386.h

index a52a7750e8490a40c9d064443b38b6f26f194029..84f20dc5c5bb09f2fc5f6e32cd70399741164553 100644 (file)
@@ -1,3 +1,9 @@
+Sun Sep  5 19:11:01 1999  Michael Meissner  <meissner@cygnus.com>
+
+       * i386.h (MASK_{DEBUG_{ADDR,ARG},INTEL_SYNTAX}): Move so these
+       don't conflict with the bits that win32, cygwin, and dgux
+       defines.
+
 Sun Sep  5 09:31:56 1999  Richard Henderson  <rth@cygnus.com>
                          Bernd Schmidt <bernds@cygnus.co.uk>
 
index c3efd72c245865b28804c1d51dad05099e254541..9411948c46e10bb6450c3392dcba0cffb153ae76 100644 (file)
@@ -90,9 +90,9 @@ extern int target_flags;
 #define MASK_STACK_PROBE       0x00000100      /* Enable stack probing */
 
 /* Temporary codegen switches */
-#define MASK_INTEL_SYNTAX      0x10000000
-#define MASK_DEBUG_ARG         0x20000000      /* function_arg */   
-#define MASK_DEBUG_ADDR                0x40000000      /* GO_IF_LEGITIMATE_ADDRESS */
+#define MASK_INTEL_SYNTAX      0x00000200
+#define MASK_DEBUG_ARG         0x00000400      /* function_arg */   
+#define MASK_DEBUG_ADDR                0x00000800      /* GO_IF_LEGITIMATE_ADDRESS */
 
 /* Use the floating point instructions */
 #define TARGET_80387 (target_flags & MASK_80387)