From: Michael Meissner Date: Sun, 5 Sep 1999 23:14:15 +0000 (+0000) Subject: Move 'temporary' bits so they don't conflict with windows/cygwin/dgux bits X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc174fb1b7f0ada7b3c86921366aa873bb3c8f33;p=gcc.git Move 'temporary' bits so they don't conflict with windows/cygwin/dgux bits From-SVN: r29132 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a52a7750e84..84f20dc5c5b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Sun Sep 5 19:11:01 1999 Michael Meissner + + * 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 Bernd Schmidt diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index c3efd72c245..9411948c46e 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -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)