From 314d60dd50709b6e572e066c8e2dd682f0640691 Mon Sep 17 00:00:00 2001 From: Michael Eager Date: Tue, 12 Mar 2013 15:19:23 +0000 Subject: [PATCH] Eliminate warning message. * opcodes/mips-dis.c (print_insn_args): Modify def of reg. --- opcodes/ChangeLog | 4 ++++ opcodes/mips-dis.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 554d8a0a86..66556f1c91 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2013-03-12 Michael Eager + + * opcodes/mips-dis.c (print_insn_args): Modify def of reg. + 2013-03-11 Sebastian Huber * nios2-opc.c (nios2_builtin_opcodes): Add entry for wrprs. diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 9c9112b3f5..018ac94f30 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -1273,7 +1273,9 @@ print_insn_args (const char *d, case 'U': { /* First check for both rd and rt being equal. */ - unsigned int reg = GET_OP (l, RD); + unsigned int reg; + + reg = GET_OP (l, RD); if (reg == GET_OP (l, RT)) infprintf (is, "%s", mips_gpr_names[reg]); else