forked from Imagelibrary/binutils-gdb
kvx: workaround gcc-4.5 bug
kvx-dis.c:1078:10: error: missing initializer kvx-dis.c:1078:10: error: (near initialization for 'dec.nb_ops') * kvx-dis.c (print_insn_kvx): Init dec with memset. (decode_prologue_epilogue_bundle): Likewise.
This commit is contained in:
@@ -1075,7 +1075,8 @@ print_insn_kvx (bfd_vma memaddr, struct disassemble_info *info)
|
||||
|
||||
/* Check for extension to right iff this is not the end of bundle. */
|
||||
|
||||
struct decoded_insn dec = { 0 };
|
||||
struct decoded_insn dec;
|
||||
memset (&dec, 0, sizeof dec);
|
||||
if (!invalid_bundle && (found = decode_insn (memaddr, insn, &dec)))
|
||||
{
|
||||
int ch;
|
||||
@@ -1248,7 +1249,8 @@ decode_prologue_epilogue_bundle (bfd_vma memaddr,
|
||||
insn_t *insn = &bundle_insn[idx_insn];
|
||||
int is_add = 0, is_get = 0, is_a_peb_insn = 0, is_copyd = 0;
|
||||
|
||||
struct decoded_insn dec = { 0 };
|
||||
struct decoded_insn dec;
|
||||
memset (&dec, 0, sizeof dec);
|
||||
if (!decode_insn (memaddr, insn, &dec))
|
||||
continue;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user