aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazuhiro Inaoka <inaoka.kazuhiro@renesas.com>2004-01-20 10:17:23 +0000
committerNick Clifton <nickc@gcc.gnu.org>2004-01-20 10:17:23 +0000
commit91e736f994a6dc50edc9a988a66007237671d710 (patch)
tree63f2230795abd3dd7d5531eb97fd27396a3a7926
parent4043d6fb405863ac024cdc3b1cca035e63833497 (diff)
downloadgcc-91e736f994a6dc50edc9a988a66007237671d710.zip
gcc-91e736f994a6dc50edc9a988a66007237671d710.tar.gz
gcc-91e736f994a6dc50edc9a988a66007237671d710.tar.bz2
(TARGET_M32R2). Test for TARGET_M32R2_MASK not TARGET_M32RX_MASK.
From-SVN: r76204
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/m32r/m32r.h2
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)