[2/7] sim: ppc: pull default switch return out

Message ID 20221109200126.21090-2-vapier@gentoo.org
State Committed
Commit 99961e814f795e4e4fd40e5f7f5bae52150963d5
Headers
Series [1/7] sim: ppc: constify spreg table |

Commit Message

Mike Frysinger Nov. 9, 2022, 8:01 p.m. UTC
  This saves a single line for the same result.  By itself, it's not
interesting, but we can further optimize the generated output and
completely omit the switch table in some cases.  Which we'll do in
follow up commits.
---
 sim/ppc/dgen.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
  

Patch

diff --git a/sim/ppc/dgen.c b/sim/ppc/dgen.c
index 0f9b02f91084..0cc210b5fed1 100644
--- a/sim/ppc/dgen.c
+++ b/sim/ppc/dgen.c
@@ -248,9 +248,8 @@  gen_spreg_c(spreg_table *table, lf *file)
 	else
 	  ASSERT(0);
       }
-      lf_printf(file, "  default:\n");
-      lf_printf(file, "    return 0;\n");
       lf_printf(file, "  }\n");
+      lf_printf(file, "  return 0;\n");
     }
     lf_printf(file, "}\n");
   }