summaryrefslogtreecommitdiff
path: root/opcodes/iq2000-ibld.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2020-02-11 09:11:18 +1030
committerAlan Modra <amodra@gmail.com>2020-02-11 12:14:01 +1030
commit2f5dd314d60e25b3094694999889c72a49fee76b (patch)
treec707b547ed64878bb800c92f2c88e20fc5adcb37 /opcodes/iq2000-ibld.c
parent212a0131eb74361b1d54cd5748e2d89539bf108e (diff)
downloadbinutils-gdb-2f5dd314d60e25b3094694999889c72a49fee76b.tar.gz
Ensure *valuep always written by extract_normal return
* cgen-ibld.in (extract_normal): Set *valuep on all return paths. * bpf-ibld.c, * epiphany-ibld.c, * fr30-ibld.c, * frv-ibld.c, * ip2k-ibld.c, * iq2000-ibld.c, * lm32-ibld.c, * m32c-ibld.c, * m32r-ibld.c, * mep-ibld.c, * mt-ibld.c, * or1k-ibld.c, * xc16x-ibld.c, * xstormy16-ibld.c: Regenerate.
Diffstat (limited to 'opcodes/iq2000-ibld.c')
-rw-r--r--opcodes/iq2000-ibld.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/opcodes/iq2000-ibld.c b/opcodes/iq2000-ibld.c
index 1e5cc4772ea..319e994d840 100644
--- a/opcodes/iq2000-ibld.c
+++ b/opcodes/iq2000-ibld.c
@@ -480,7 +480,10 @@ extract_normal (CGEN_CPU_DESC cd,
abort ();
if (fill_cache (cd, ex_info, word_offset / 8, word_length / 8, pc) == 0)
- return 0;
+ {
+ *valuep = 0;
+ return 0;
+ }
value = extract_1 (cd, ex_info, start, length, word_length, bufp, pc);
}