diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/m32r/m32r.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c48b56e..819ad30 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-01-20 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> + + * config/m32r/m32r.h (TARGET_M32R2). Test for TARGET_M32R2_MASK + not TARGET_M32RX_MASK. + 2004-01-20 Eric Botcazou <ebotcazou@libertysurf.fr> PR target/13557 diff --git a/gcc/config/m32r/m32r.h b/gcc/config/m32r/m32r.h index ae29628..43db5d0 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) |
