Replace 'flags' with 'signed_overflow_ok_p'
authorNick Clifton <nickc@redhat.com>
Mon, 28 Feb 2000 17:57:40 +0000 (17:57 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 28 Feb 2000 17:57:40 +0000 (17:57 +0000)
opcodes/ChangeLog
opcodes/m32r-desc.c

index f2f9adb..ca2b6d7 100644 (file)
@@ -1,3 +1,8 @@
+2000-02-28  Nick Clifton  <nickc@cygnus.com>
+
+       * m32r-desc.c (m32r_cgen_cpu_open): Replace 'flags' with
+       'signed_overflow_ok_p'.
+
 2000-02-27  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * Makefile.am (stamp-lib): Use $(LIBTOOL) --config to get the
index 1502e74..360c38f 100644 (file)
@@ -1339,7 +1339,7 @@ m32r_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...)
   m32r_cgen_rebuild_tables (cd);
 
   /* Initialise flags.  */
-  cd->flags = 0;
+  cd->signed_overflow_ok_p = 0;
   
   return (CGEN_CPU_DESC) cd;
 }