aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-06-25 05:12:42 +0000
committerJeffrey A Law <law@cygnus.com>1999-06-25 05:12:42 +0000
commitb1c3c05f37c8b33b990fab5089952b2b0755ac06 (patch)
treeb34895a850697ed312722cfbbdef0131813e7f4a
parentac77fba658d59b1792b60b2cdf951d42ac30c32c (diff)
h
* alpha.h (MASK_SUPPORT_ARCH, MASK_CPU_EV5, MASK_CPU_EV6): Define such that MASK_SUPPORT_ARCH is not negative. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@27765 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/config/alpha/alpha.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h
index 42599f91aca..e9c3f6d2f68 100644
--- a/gcc/config/alpha/alpha.h
+++ b/gcc/config/alpha/alpha.h
@@ -157,14 +157,14 @@ extern enum alpha_fp_trap_mode alpha_fptm;
/* This means that the processor is an EV5, EV56, or PCA56. This is defined
only in TARGET_CPU_DEFAULT. */
-#define MASK_CPU_EV5 (1 << 29)
+#define MASK_CPU_EV5 (1 << 28)
/* Likewise for EV6. */
-#define MASK_CPU_EV6 (1 << 30)
+#define MASK_CPU_EV6 (1 << 29)
/* This means we support the .arch directive in the assembler. Only
defined in TARGET_CPU_DEFAULT. */
-#define MASK_SUPPORT_ARCH (1 << 31)
+#define MASK_SUPPORT_ARCH (1 << 30)
#define TARGET_SUPPORT_ARCH (target_flags & MASK_SUPPORT_ARCH)
/* These are for target os support and cannot be changed at runtime. */