The hash table rewrite broke --help output due to subtle behavior:
calling dup_arg_p(NULL) will create & clear the table, not just
create it. The --help output relies on this to clear the table
before it shows things.
+2021-05-01 Mike Frysinger <vapier@gentoo.org>
+
+ * sim-options.c (dup_arg_p): Call htab_empty.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* dv-sockser.c (dv_sockser_install): Rename to ...
arg_table = htab_create_alloc (10, htab_hash_string,
compare_strings, NULL,
xcalloc, free);
+ htab_empty (arg_table);
return 0;
}