Fix compile time warning compiling ARC port.
authorNick Clifton <nickc@redhat.com>
Thu, 8 Oct 2015 11:31:26 +0000 (12:31 +0100)
committerNick Clifton <nickc@redhat.com>
Thu, 8 Oct 2015 11:34:13 +0000 (12:34 +0100)
opcodes/ChangeLog
opcodes/arc-dis.c

index 1effd13..4dd1946 100644 (file)
@@ -1,3 +1,7 @@
+2015-10-08  Nick Clifton  <nickc@redhat.com>
+
+       * arc-dis.c (print_insn_arc): Initiallise insn array.
+
 2015-10-07  Yao Qi  <yao.qi@linaro.org>
 
        * aarch64-dis.c (aarch64_ext_sysins_op): Access field
index 516fc22..6319d8a 100644 (file)
@@ -118,7 +118,8 @@ print_insn_arc (bfd_vma memaddr,
   int status;
   unsigned int i;
   int insnLen = 0;
-  unsigned insn[2], isa_mask;
+  unsigned insn[2] = { 0, 0 };
+  unsigned isa_mask;
   const unsigned char *opidx;
   const unsigned char *flgidx;
   const struct arc_opcode *opcode;