mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
std.Target.x86: refresh from update_cpu_features.zig
Just to get rid of this ordering diff.
This commit is contained in:
parent
39e91deb77
commit
65b0a2342b
1 changed files with 7 additions and 7 deletions
|
|
@ -3081,13 +3081,6 @@ pub const cpu = struct {
|
||||||
.xsaveopt,
|
.xsaveopt,
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
pub const @"i86": CpuModel = .{
|
|
||||||
.name = "i86",
|
|
||||||
.llvm_name = null,
|
|
||||||
.features = featureSet(&[_]Feature{
|
|
||||||
.@"16bit_mode",
|
|
||||||
}),
|
|
||||||
};
|
|
||||||
pub const @"i386": CpuModel = .{
|
pub const @"i386": CpuModel = .{
|
||||||
.name = "i386",
|
.name = "i386",
|
||||||
.llvm_name = "i386",
|
.llvm_name = "i386",
|
||||||
|
|
@ -3129,6 +3122,13 @@ pub const cpu = struct {
|
||||||
.x87,
|
.x87,
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
|
pub const @"i86": CpuModel = .{
|
||||||
|
.name = "i86",
|
||||||
|
.llvm_name = null,
|
||||||
|
.features = featureSet(&[_]Feature{
|
||||||
|
.@"16bit_mode",
|
||||||
|
}),
|
||||||
|
};
|
||||||
pub const icelake_client: CpuModel = .{
|
pub const icelake_client: CpuModel = .{
|
||||||
.name = "icelake_client",
|
.name = "icelake_client",
|
||||||
.llvm_name = "icelake-client",
|
.llvm_name = "icelake-client",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue