sim: use ARRAY_SIZE instead of ad-hoc sizeof calculations

This commit is contained in:
Mike Frysinger 2017-02-13 00:12:35 -05:00
parent b1499fc214
commit 13a590ca65
39 changed files with 141 additions and 62 deletions

View file

@ -160,7 +160,7 @@ lm32bf_init_idesc_table (SIM_CPU *cpu)
init_idesc (cpu, id, t);
/* Now fill in the values for the chosen cpu. */
for (t = lm32bf_insn_sem, tend = t + sizeof (lm32bf_insn_sem) / sizeof (*t);
for (t = lm32bf_insn_sem, tend = t + ARRAY_SIZE (lm32bf_insn_sem);
t != tend; ++t)
{
init_idesc (cpu, & table[t->index], t);