diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2024-12-28 22:51:41 -0500 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2025-01-16 20:42:08 -0500 |
| commit | ac1a975f9b5a7d939663fa90556a2f038250c531 (patch) | |
| tree | 9df8cf0677d30645b13249b6357240bdf533a67e /lib/std/Target/Query.zig | |
| parent | a7efc56d8680bb51cc2488bbc0680b2fc080174f (diff) | |
| download | zig-ac1a975f9b5a7d939663fa90556a2f038250c531.tar.gz zig-ac1a975f9b5a7d939663fa90556a2f038250c531.zip | |
x86_64: implement clz and not
Diffstat (limited to 'lib/std/Target/Query.zig')
| -rw-r--r-- | lib/std/Target/Query.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/std/Target/Query.zig b/lib/std/Target/Query.zig index 50db1fed5e..56387c27b3 100644 --- a/lib/std/Target/Query.zig +++ b/lib/std/Target/Query.zig @@ -6,13 +6,13 @@ /// `null` means native. cpu_arch: ?Target.Cpu.Arch = null, -cpu_model: CpuModel = CpuModel.determined_by_arch_os, +cpu_model: CpuModel = .determined_by_arch_os, /// Sparse set of CPU features to add to the set from `cpu_model`. -cpu_features_add: Target.Cpu.Feature.Set = Target.Cpu.Feature.Set.empty, +cpu_features_add: Target.Cpu.Feature.Set = .empty, /// Sparse set of CPU features to remove from the set from `cpu_model`. -cpu_features_sub: Target.Cpu.Feature.Set = Target.Cpu.Feature.Set.empty, +cpu_features_sub: Target.Cpu.Feature.Set = .empty, /// `null` means native. os_tag: ?Target.Os.Tag = null, @@ -38,7 +38,7 @@ abi: ?Target.Abi = null, /// When `os_tag` is `null`, then `null` means native. Otherwise it means the standard path /// based on the `os_tag`. -dynamic_linker: Target.DynamicLinker = Target.DynamicLinker.none, +dynamic_linker: Target.DynamicLinker = .none, /// `null` means default for the cpu/arch/os combo. ofmt: ?Target.ObjectFormat = null, |
