(TARGET_M32R2). Test for TARGET_M32R2_MASK not TARGET_M32RX_MASK.
authorKazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
Tue, 20 Jan 2004 10:17:23 +0000 (10:17 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Tue, 20 Jan 2004 10:17:23 +0000 (10:17 +0000)
From-SVN: r76204

gcc/ChangeLog
gcc/config/m32r/m32r.h

index c48b56ef316ef1d05cb67b48e6e02d00f66923a8..819ad308d2b152fba19f3fa193832555ec31676d 100644 (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
index ae29628e9ac44d68bd3430bc3cb28c33b6d215f8..43db5d0d5827b2dfa196323fc8be50d6e2f2ea49 100644 (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)