update_cpu_features: fix a fmtId call to be fmtIdPU

This commit is contained in:
Alex Rønne Petersen 2025-07-16 18:26:30 +02:00
parent 7e6cb7c7a5
commit 5739ce786e
No known key found for this signature in database

View File

@ -1921,7 +1921,7 @@ fn processOneTarget(job: Job) void {
); );
for (all_features.items, 0..) |feature, i| { for (all_features.items, 0..) |feature, i| {
try w.print("\n {f},", .{std.zig.fmtId(feature.zig_name)}); try w.print("\n {f},", .{std.zig.fmtIdPU(feature.zig_name)});
if (i == all_features.items.len - 1) try w.writeAll("\n"); if (i == all_features.items.len - 1) try w.writeAll("\n");
} }