Re: ARC: Use of uninitialised value
[deliverable/binutils-gdb.git] / opcodes / xstormy16-ibld.c
index 69555cb3e0f5450a8a7e3c1d33cc2dcf7e3b8c7b..70cf88d546bdf68d6e74d67e471166b4355e1fea 100644 (file)
@@ -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);
     }
This page took 0.02481 seconds and 4 git commands to generate.