From: Richard Henderson Date: Fri, 25 Jun 1999 05:09:12 +0000 (-0600) Subject: alpha.h (MASK_SUPPORT_ARCH, [...]): Define such that MASK_SUPPORT_ARCH is not negative. X-Git-Tag: prereleases/gcc-2.95-test~131 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42ceb22d890d4bcd6ce6d6053dc9af04e0ce1643;p=thirdparty%2Fgcc.git alpha.h (MASK_SUPPORT_ARCH, [...]): Define such that MASK_SUPPORT_ARCH is not negative. h * alpha.h (MASK_SUPPORT_ARCH, MASK_CPU_EV5, MASK_CPU_EV6): Define such that MASK_SUPPORT_ARCH is not negative. From-SVN: r27762 --- diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 42599f91acaa..e9c3f6d2f684 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. */