diff options
author | Michael Meissner <meissner@cygnus.com> | 1999-09-05 23:14:15 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1999-09-05 23:14:15 +0000 |
commit | dc174fb1b7f0ada7b3c86921366aa873bb3c8f33 (patch) | |
tree | 33d5a7480fceeb9d63a8405d83ad72d7b063ddad | |
parent | 2168d24aca3ec856bdc8cb4813e767f56b69a93e (diff) | |
download | gcc-dc174fb1b7f0ada7b3c86921366aa873bb3c8f33.zip gcc-dc174fb1b7f0ada7b3c86921366aa873bb3c8f33.tar.gz gcc-dc174fb1b7f0ada7b3c86921366aa873bb3c8f33.tar.bz2 |
Move 'temporary' bits so they don't conflict with windows/cygwin/dgux bits
From-SVN: r29132
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.h | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a52a775..84f20dc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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> diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index c3efd72..9411948 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) |