sim: d10v: fix -Wunused-but-set-variable warnings

This commit is contained in:
Mike Frysinger 2023-12-06 20:07:06 -07:00
parent 4125d64738
commit a886474a62

View File

@ -88,13 +88,13 @@ lookup_hash (SIM_DESC sd, SIM_CPU *cpu, uint32_t ins, int size)
INLINE static void INLINE static void
get_operands (struct simops *s, uint32_t ins) get_operands (struct simops *s, uint32_t ins)
{ {
int i, shift, bits, flags; int i, shift, bits;
uint32_t mask; uint32_t mask;
for (i=0; i < s->numops; i++) for (i=0; i < s->numops; i++)
{ {
shift = s->operands[3*i]; shift = s->operands[3*i];
bits = s->operands[3*i+1]; bits = s->operands[3*i+1];
flags = s->operands[3*i+2]; /* flags = s->operands[3*i+2]; */
mask = 0x7FFFFFFF >> (31 - bits); mask = 0x7FFFFFFF >> (31 - bits);
OP[i] = (ins >> shift) & mask; OP[i] = (ins >> shift) & mask;
} }