From: Kazuhiro Inaoka Date: Tue, 20 Jan 2004 10:17:23 +0000 (+0000) Subject: (TARGET_M32R2). Test for TARGET_M32R2_MASK not TARGET_M32RX_MASK. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=91e736f994a6dc50edc9a988a66007237671d710;p=gcc.git (TARGET_M32R2). Test for TARGET_M32R2_MASK not TARGET_M32RX_MASK. From-SVN: r76204 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c48b56ef316..819ad308d2b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-01-20 Kazuhiro Inaoka + + * config/m32r/m32r.h (TARGET_M32R2). Test for TARGET_M32R2_MASK + not TARGET_M32RX_MASK. + 2004-01-20 Eric Botcazou PR target/13557 diff --git a/gcc/config/m32r/m32r.h b/gcc/config/m32r/m32r.h index ae29628e9ac..43db5d0d582 100644 --- a/gcc/config/m32r/m32r.h +++ b/gcc/config/m32r/m32r.h @@ -241,7 +241,7 @@ extern int target_flags; /* Support extended instruction set of m32r2. */ #define TARGET_M32R2_MASK (1 << 6) -#define TARGET_M32R2 (target_flags & TARGET_M32RX_MASK) +#define TARGET_M32R2 (target_flags & TARGET_M32R2_MASK) #undef TARGET_M32R #define TARGET_M32R (! TARGET_M32RX && ! TARGET_M32R2)