[4/4] sim: igen: fix hang when decoding boolean rule constants

Message ID 20221110184128.18812-4-vapier@gentoo.org
State Committed
Commit ef7c5fd15dbe0937a2b5c729d88263beec507b42
Headers
Series [1/4] sim: igen: constify various func arguments |

Commit Message

Mike Frysinger Nov. 10, 2022, 6:41 p.m. UTC
  The parser for boolean rules fails to skip over the , separator in
the options which makes it hang forever.  No dc files in the tree
use boolean rules atm which is why no one noticed.
---
 sim/igen/ld-decode.c | 2 ++
 1 file changed, 2 insertions(+)
  

Patch

diff --git a/sim/igen/ld-decode.c b/sim/igen/ld-decode.c
index d1c90463ca3c..51bb3e0b0a37 100644
--- a/sim/igen/ld-decode.c
+++ b/sim/igen/ld-decode.c
@@ -131,6 +131,8 @@  load_decode_table (const char *file_name)
 		  break;
 		}
 	      chp = skip_to_separator (chp, ",");
+	      if (*chp == ',')
+		++chp;
 	      chp = skip_spaces (chp);
 	    }
 	}