sim: ppc: collapse is_valid switch table more
authorMike Frysinger <vapier@gentoo.org>
Wed, 9 Nov 2022 19:15:34 +0000 (02:15 +0700)
committerMike Frysinger <vapier@gentoo.org>
Thu, 10 Nov 2022 07:27:40 +0000 (14:27 +0700)
commit1eff12f75acd62066399437042b7c016463ad932
tree2227dd6a06ddbea5ad70723034f163f41a215531
parent99961e814f795e4e4fd40e5f7f5bae52150963d5
sim: ppc: collapse is_valid switch table more

Instead of writing:
  case 1:
    return 1;
  case 2:
    return 1;
  ...etc...

Output a single return so we get:
  case 1:
  case 2:
  case ...
    return 1;

This saves ~100 lines of code.  Hopefully the compiler was already
smart enough to optimize to the same code, but if not, this probably
helps there too :).
sim/ppc/dgen.c