aboutsummaryrefslogtreecommitdiff
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
commit447b43fa50e946d7287d01679839b0c476a2f941 (patch)
tree5349310436ea60e914b457f9ec5e628de0b605ae /opcodes
parente59db122bdd69dbe595d94ea02ddfbfd04b8f443 (diff)
downloadgdb-447b43fa50e946d7287d01679839b0c476a2f941.zip
gdb-447b43fa50e946d7287d01679839b0c476a2f941.tar.gz
gdb-447b43fa50e946d7287d01679839b0c476a2f941.tar.bz2
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 68a09ac..fe86f74 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 810f04b..51e11e0 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;
}