(TARGET_M32R2). Test for TARGET_M32R2_MASK not TARGET_M32RX_MASK.

From-SVN: r76204
This commit is contained in:
Kazuhiro Inaoka 2004-01-20 10:17:23 +00:00 committed by Nick Clifton
parent 4043d6fb40
commit 91e736f994
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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)