OSDN Git Service

Move 'temporary' bits so they don't conflict with windows/cygwin/dgux bits
authormeissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 5 Sep 1999 23:14:15 +0000 (23:14 +0000)
committermeissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 5 Sep 1999 23:14:15 +0000 (23:14 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29132 138bc75d-0d04-0410-961f-82ee72b054a4

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

index a52a775..84f20dc 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 c3efd72..9411948 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)