On 8/16/23 07:51, Akihiko Odaki wrote:
+const GDBFeature *gdb_find_static_feature(const char *xmlname)
+{
+ const GDBFeature *feature;
+
+ for (feature = gdb_static_features; feature->xmlname; feature++) {
+ if (!strcmp(feature->xmlname, xmlname)) {
+ return feature;
+ }
+ }
+
+ abort();
g_assert_not_reached(). Otherwise, Reviewed-by: Richard Henderson <[email protected]> r~
