[1/7] sim: ppc: constify spreg table

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

Commit Message

Mike Frysinger Nov. 9, 2022, 8:01 p.m. UTC
  This internal table is only ever read, so constify it.
---
 sim/ppc/dgen.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Patch

diff --git a/sim/ppc/dgen.c b/sim/ppc/dgen.c
index caafe07a6aab..0f9b02f91084 100644
--- a/sim/ppc/dgen.c
+++ b/sim/ppc/dgen.c
@@ -196,14 +196,14 @@  gen_spreg_c(spreg_table *table, lf *file)
 
   lf_printf(file, "\n");
   lf_printf(file, "typedef struct _spreg_info {\n");
-  lf_printf(file, "  char *name;\n");
+  lf_printf(file, "  const char *name;\n");
   lf_printf(file, "  int is_valid;\n");
   lf_printf(file, "  int length;\n");
   lf_printf(file, "  int is_readonly;\n");
   lf_printf(file, "  int index;\n");
   lf_printf(file, "} spreg_info;\n");
   lf_printf(file, "\n");
-  lf_printf(file, "static spreg_info spr_info[nr_of_sprs+1] = {\n");
+  lf_printf(file, "static const spreg_info spr_info[nr_of_sprs+1] = {\n");
   entry = table->sprs;
   for (spreg_nr = 0; spreg_nr < nr_of_sprs+1; spreg_nr++) {
     if (entry == NULL || spreg_nr < entry->spreg_nr)