From: Nick Clifton Date: Mon, 24 Apr 2000 17:32:36 +0000 (+0000) Subject: Initialise signed_overflow field X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=447b43fa50e946d7287d01679839b0c476a2f941;p=binutils-gdb.git Initialise signed_overflow field --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 68a09ac9e32..fe86f74dc34 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2000-04-24 Nick Clifton + + * fr30-desc.c (fr30_cgen_cpu_open): Initialise signed_overflow + field. + 2000-04-22 Timothy Wall * ia64-gen.c (general): Add an ordered table of primary diff --git a/opcodes/fr30-desc.c b/opcodes/fr30-desc.c index 810f04b9dcc..51e11e0ca1d 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; }