diff options
author | Nick Clifton <nickc@redhat.com> | 2000-04-24 17:32:36 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-04-24 17:32:36 +0000 |
commit | 447b43fa50e946d7287d01679839b0c476a2f941 (patch) | |
tree | 5349310436ea60e914b457f9ec5e628de0b605ae /opcodes/fr30-desc.c | |
parent | e59db122bdd69dbe595d94ea02ddfbfd04b8f443 (diff) | |
download | gdb-447b43fa50e946d7287d01679839b0c476a2f941.zip gdb-447b43fa50e946d7287d01679839b0c476a2f941.tar.gz gdb-447b43fa50e946d7287d01679839b0c476a2f941.tar.bz2 |
Initialise signed_overflow field
Diffstat (limited to 'opcodes/fr30-desc.c')
-rw-r--r-- | opcodes/fr30-desc.c | 3 |
1 files changed, 3 insertions, 0 deletions
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; } |