fn setFeature(comptime Feature: type, cpu: *Target.Cpu, feature: Feature, enabled: bool) void
fn setFeature(comptime Feature: type, cpu: *Target.Cpu, feature: Feature, enabled: bool) void { const idx = @as(Target.Cpu.Feature.Set.Index, @backingInt(feature)); if (enabled) cpu.features.addFeature(idx) else cpu.features.removeFeature(idx); }