summaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-04-24 17:32:36 +0000
committerNick Clifton <nickc@redhat.com>2000-04-24 17:32:36 +0000
commit36983ee2d95c95a82d4ae66ba3dc10520ea5dffe (patch)
tree4c37ad255b03b7323a5a652394780bf7faf6be6f /opcodes
parente5f13ef3970b77f09b4b88eca2c640f8fe598304 (diff)
downloadbinutils-redhat-36983ee2d95c95a82d4ae66ba3dc10520ea5dffe.tar.gz
Initialise signed_overflow field
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/fr30-desc.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 68a09ac9e3..fe86f74dc3 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,8 @@
+2000-04-24 Nick Clifton <nickc@cygnus.com>
+
+ * fr30-desc.c (fr30_cgen_cpu_open): Initialise signed_overflow
+ field.
+
2000-04-22 Timothy Wall <twall@cygnus.com>
* ia64-gen.c (general): Add an ordered table of primary
diff --git a/opcodes/fr30-desc.c b/opcodes/fr30-desc.c
index 810f04b9dc..51e11e0ca1 100644
--- a/opcodes/fr30-desc.c
+++ b/opcodes/fr30-desc.c
@@ -1609,6 +1609,9 @@ fr30_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...)
cd->rebuild_tables = fr30_cgen_rebuild_tables;
fr30_cgen_rebuild_tables (cd);
+ /* Initialise flags. */
+ cd->signed_overflow_ok_p = 0;
+
return (CGEN_CPU_DESC) cd;
}