(MASK_BYTE_OPS): Now define as 1024.
authorRichard Kenner <kenner@gcc.gnu.org>
Sat, 16 Nov 1996 12:22:45 +0000 (07:22 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Sat, 16 Nov 1996 12:22:45 +0000 (07:22 -0500)
From-SVN: r13192

gcc/config/alpha/alpha.h

index 2c41d9db3a3e1208a0c3fce68da810ba58ae1507..532c40f981bf45ae03febd36781bc90a6560f2e3 100644 (file)
@@ -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 }