| author | |
| committer | |
| log | be9841335e4038798dc40c9b265cd9094336e622 |
| tree | d322b34cc6d86b3f25944a9e28542c16105b09e4 |
| parent | 84e9aec13f0c0bd5e30286493dfdf9fb7665aaf1 |
| signature |
It is very non-obvious that this is what lv2 refers to, and we already use ps4
and ps5 to refer to the later models, so let's just be consistent.3 files changed, 10 insertions(+), 10 deletions(-)
lib/compiler/aro/aro/target.zig+1-1| ... | ... | @@ -634,7 +634,7 @@ pub fn toLLVMTriple(target: std.Target, buf: []u8) []const u8 { |
| 634 | 634 | .freebsd => "freebsd", |
| 635 | 635 | .fuchsia => "fuchsia", |
| 636 | 636 | .linux => "linux", |
| 637 | .lv2 => "lv2", | |
| 637 | .ps3 => "lv2", | |
| 638 | 638 | .netbsd => "netbsd", |
| 639 | 639 | .openbsd => "openbsd", |
| 640 | 640 | .solaris => "solaris", |
lib/std/Target.zig+7-7| ... | ... | @@ -24,7 +24,7 @@ pub const Os = struct { |
| 24 | 24 | fuchsia, |
| 25 | 25 | ios, |
| 26 | 26 | linux, |
| 27 | lv2, | |
| 27 | ps3, | |
| 28 | 28 | macos, |
| 29 | 29 | netbsd, |
| 30 | 30 | openbsd, |
| ... | ... | @@ -143,7 +143,7 @@ pub const Os = struct { |
| 143 | 143 | .ananas, |
| 144 | 144 | .cloudabi, |
| 145 | 145 | .fuchsia, |
| 146 | .lv2, | |
| 146 | .ps3, | |
| 147 | 147 | .zos, |
| 148 | 148 | .haiku, |
| 149 | 149 | .minix, |
| ... | ... | @@ -375,7 +375,7 @@ pub const Os = struct { |
| 375 | 375 | .ananas, |
| 376 | 376 | .cloudabi, |
| 377 | 377 | .fuchsia, |
| 378 | .lv2, | |
| 378 | .ps3, | |
| 379 | 379 | .zos, |
| 380 | 380 | .haiku, |
| 381 | 381 | .minix, |
| ... | ... | @@ -562,7 +562,7 @@ pub const Os = struct { |
| 562 | 562 | .ananas, |
| 563 | 563 | .cloudabi, |
| 564 | 564 | .fuchsia, |
| 565 | .lv2, | |
| 565 | .ps3, | |
| 566 | 566 | .zos, |
| 567 | 567 | .minix, |
| 568 | 568 | .rtems, |
| ... | ... | @@ -668,7 +668,7 @@ pub const Abi = enum { |
| 668 | 668 | .ananas, |
| 669 | 669 | .cloudabi, |
| 670 | 670 | .dragonfly, |
| 671 | .lv2, | |
| 671 | .ps3, | |
| 672 | 672 | .zos, |
| 673 | 673 | .minix, |
| 674 | 674 | .rtems, |
| ... | ... | @@ -1805,7 +1805,7 @@ pub const DynamicLinker = struct { |
| 1805 | 1805 | .ananas, |
| 1806 | 1806 | .cloudabi, |
| 1807 | 1807 | .fuchsia, |
| 1808 | .lv2, | |
| 1808 | .ps3, | |
| 1809 | 1809 | .zos, |
| 1810 | 1810 | .minix, |
| 1811 | 1811 | .rtems, |
| ... | ... | @@ -2300,7 +2300,7 @@ pub fn c_type_bit_size(target: Target, c_type: CType) u16 { |
| 2300 | 2300 | }, |
| 2301 | 2301 | |
| 2302 | 2302 | .cloudabi, |
| 2303 | .lv2, | |
| 2303 | .ps3, | |
| 2304 | 2304 | .zos, |
| 2305 | 2305 | .rtems, |
| 2306 | 2306 | .aix, |
src/codegen/llvm.zig+2-2| ... | ... | @@ -101,7 +101,7 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 { |
| 101 | 101 | .freebsd => "freebsd", |
| 102 | 102 | .fuchsia => "fuchsia", |
| 103 | 103 | .linux => "linux", |
| 104 | .lv2 => "lv2", | |
| 104 | .ps3 => "lv2", | |
| 105 | 105 | .netbsd => "netbsd", |
| 106 | 106 | .openbsd => "openbsd", |
| 107 | 107 | .solaris, .illumos => "solaris", |
| ... | ... | @@ -221,7 +221,7 @@ pub fn targetOs(os_tag: std.Target.Os.Tag) llvm.OSType { |
| 221 | 221 | .fuchsia => .Fuchsia, |
| 222 | 222 | .ios => .IOS, |
| 223 | 223 | .linux => .Linux, |
| 224 | .lv2 => .Lv2, | |
| 224 | .ps3 => .Lv2, | |
| 225 | 225 | .macos => .MacOSX, |
| 226 | 226 | .netbsd => .NetBSD, |
| 227 | 227 | .openbsd => .OpenBSD, |