Commit 65b0a2342b

Alex Rønne Petersen <alex@alexrp.com>
2025-11-13 22:29:28
std.Target.x86: refresh from update_cpu_features.zig
Just to get rid of this ordering diff.
1 parent 39e91de
Changed files (1)
lib
std
Target
lib/std/Target/x86.zig
@@ -3081,13 +3081,6 @@ pub const cpu = struct {
             .xsaveopt,
         }),
     };
-    pub const @"i86": CpuModel = .{
-        .name = "i86",
-        .llvm_name = null,
-        .features = featureSet(&[_]Feature{
-            .@"16bit_mode",
-        }),
-    };
     pub const @"i386": CpuModel = .{
         .name = "i386",
         .llvm_name = "i386",
@@ -3129,6 +3122,13 @@ pub const cpu = struct {
             .x87,
         }),
     };
+    pub const @"i86": CpuModel = .{
+        .name = "i86",
+        .llvm_name = null,
+        .features = featureSet(&[_]Feature{
+            .@"16bit_mode",
+        }),
+    };
     pub const icelake_client: CpuModel = .{
         .name = "icelake_client",
         .llvm_name = "icelake-client",