From: Mike Frysinger Date: Sun, 15 Mar 2015 00:54:49 +0000 (-0400) Subject: sim: bfin: fix signed warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b19839da382a4755e91d0a943b6d89d13fd74972;p=binutils-gdb.git sim: bfin: fix signed warning Fix the type of the local var to match the function it is passed to. --- diff --git a/sim/bfin/ChangeLog b/sim/bfin/ChangeLog index 764bad2e1f8..ee5f81c0e31 100644 --- a/sim/bfin/ChangeLog +++ b/sim/bfin/ChangeLog @@ -1,3 +1,7 @@ +2015-03-14 Mike Frysinger + + * bfin-sim.c (decode_dsp32alu_0): Change v to bu32. + 2015-03-14 Mike Frysinger * Makefile.in (SIM_RUN_OBJS): Delete. diff --git a/sim/bfin/bfin-sim.c b/sim/bfin/bfin-sim.c index 179d2b61934..364ee299972 100644 --- a/sim/bfin/bfin-sim.c +++ b/sim/bfin/bfin-sim.c @@ -4537,7 +4537,7 @@ decode_dsp32alu_0 (SIM_CPU *cpu, bu16 iw0, bu16 iw1) else if ((aop == 0 || aop == 1) && aopcde == 14 && x == 0 && s == 0) { bs40 src_acc = get_extended_acc (cpu, aop); - int v = 0; + bu32 v = 0; TRACE_INSN (cpu, "A%i = - A%i;", HL, aop);