| ... | ... | @@ -17,7 +17,6 @@ pub const Os = struct { |
| 17 | 17 | |
| 18 | 18 | pub const Tag = enum { |
| 19 | 19 | freestanding, |
| 20 | | cloudabi, |
| 21 | 20 | dragonfly, |
| 22 | 21 | freebsd, |
| 23 | 22 | fuchsia, |
| ... | ... | @@ -139,7 +138,6 @@ pub const Os = struct { |
| 139 | 138 | pub inline fn getVersionRangeTag(tag: Tag) @typeInfo(TaggedVersionRange).Union.tag_type.? { |
| 140 | 139 | return switch (tag) { |
| 141 | 140 | .freestanding, |
| 142 | | .cloudabi, |
| 143 | 141 | .fuchsia, |
| 144 | 142 | .ps3, |
| 145 | 143 | .zos, |
| ... | ... | @@ -370,7 +368,6 @@ pub const Os = struct { |
| 370 | 368 | pub fn default(tag: Tag, arch: Cpu.Arch) VersionRange { |
| 371 | 369 | return switch (tag) { |
| 372 | 370 | .freestanding, |
| 373 | | .cloudabi, |
| 374 | 371 | .fuchsia, |
| 375 | 372 | .ps3, |
| 376 | 373 | .zos, |
| ... | ... | @@ -556,7 +553,6 @@ pub const Os = struct { |
| 556 | 553 | .linux, |
| 557 | 554 | .windows, |
| 558 | 555 | .freestanding, |
| 559 | | .cloudabi, |
| 560 | 556 | .fuchsia, |
| 561 | 557 | .ps3, |
| 562 | 558 | .zos, |
| ... | ... | @@ -662,7 +658,6 @@ pub const Abi = enum { |
| 662 | 658 | pub fn default(arch: Cpu.Arch, os: Os) Abi { |
| 663 | 659 | return if (arch.isWasm()) .musl else switch (os.tag) { |
| 664 | 660 | .freestanding, |
| 665 | | .cloudabi, |
| 666 | 661 | .dragonfly, |
| 667 | 662 | .ps3, |
| 668 | 663 | .zos, |
| ... | ... | @@ -1791,7 +1786,6 @@ pub const DynamicLinker = struct { |
| 1791 | 1786 | |
| 1792 | 1787 | // TODO go over each item in this list and either move it to the above list, or |
| 1793 | 1788 | // implement the standard dynamic linker path code for it. |
| 1794 | | .cloudabi, |
| 1795 | 1789 | .fuchsia, |
| 1796 | 1790 | .ps3, |
| 1797 | 1791 | .zos, |
| ... | ... | @@ -2275,7 +2269,6 @@ pub fn c_type_bit_size(target: Target, c_type: CType) u16 { |
| 2275 | 2269 | .longdouble => return 80, |
| 2276 | 2270 | }, |
| 2277 | 2271 | |
| 2278 | | .cloudabi, |
| 2279 | 2272 | .ps3, |
| 2280 | 2273 | .zos, |
| 2281 | 2274 | .rtems, |