diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-11-16 07:22:45 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-11-16 07:22:45 -0500 |
commit | 025f3281857e3c114d3989660b8db436c8054539 (patch) | |
tree | d1b70e647dd61b56ba496a988531ae619ecee448 | |
parent | 067d47b910e53b4d461c540a4c0802cafa479b48 (diff) | |
download | gcc-025f3281857e3c114d3989660b8db436c8054539.zip gcc-025f3281857e3c114d3989660b8db436c8054539.tar.gz gcc-025f3281857e3c114d3989660b8db436c8054539.tar.bz2 |
(MASK_BYTE_OPS): Now define as 1024.
From-SVN: r13192
-rw-r--r-- | gcc/config/alpha/alpha.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 2c41d9d..532c40f 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -157,11 +157,6 @@ extern enum alpha_fp_trap_mode alpha_fptm; #define MASK_BUILD_CONSTANTS 128 #define TARGET_BUILD_CONSTANTS (target_flags & MASK_BUILD_CONSTANTS) -/* This means that the processor has byte and half word loads and stores. */ - -#define MASK_BYTE_OPS 256 -#define TARGET_BYTE_OPS (target_flags & MASK_BYTE_OPS) - /* This means we are compiling for openVMS. */ #define MASK_OPEN_VMS 256 @@ -173,6 +168,11 @@ extern enum alpha_fp_trap_mode alpha_fptm; #define MASK_FLOAT_VAX 512 #define TARGET_FLOAT_VAX (target_flags & MASK_FLOAT_VAX) +/* This means that the processor has byte and half word loads and stores. */ + +#define MASK_BYTE_OPS 1024 +#define TARGET_BYTE_OPS (target_flags & MASK_BYTE_OPS) + /* Macro to define tables used to set the flags. This is a list in braces of pairs in braces, each pair being { "NAME", VALUE } |