diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-07-20 13:55:37 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-20 13:55:37 -0700 |
| commit | ff02bf403b546ffc91158e976a4e9567ab02582d (patch) | |
| tree | 5447c319e889b481929f5be7e1c4dcb5164d822c /src/codegen/llvm.zig | |
| parent | 6d7bbab740a8c4790fe30c63d026d72fb7556984 (diff) | |
| parent | 5e82e90dbf2a28baa69c3f79c09407e3c2e78ceb (diff) | |
| download | zig-ff02bf403b546ffc91158e976a4e9567ab02582d.tar.gz zig-ff02bf403b546ffc91158e976a4e9567ab02582d.zip | |
Merge pull request #20402 from alexrp/target-cleanup
std.Target: Remove some obsolete/dead specifiers.
Diffstat (limited to 'src/codegen/llvm.zig')
| -rw-r--r-- | src/codegen/llvm.zig | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig index e4d90cf3f0..25d7d08f08 100644 --- a/src/codegen/llvm.zig +++ b/src/codegen/llvm.zig @@ -83,8 +83,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 { .xtensa => "xtensa", .nvptx => "nvptx", .nvptx64 => "nvptx64", - .le32 => "le32", - .le64 => "le64", .amdil => "amdil", .amdil64 => "amdil64", .hsail => "hsail", @@ -112,7 +110,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 { .dragonfly => "dragonfly", .freebsd => "freebsd", .fuchsia => "fuchsia", - .kfreebsd => "kfreebsd", .linux => "linux", .lv2 => "lv2", .netbsd => "netbsd", @@ -122,7 +119,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 { .zos => "zos", .haiku => "haiku", .rtems => "rtems", - .nacl => "nacl", .aix => "aix", .cuda => "cuda", .nvcl => "nvcl", @@ -178,7 +174,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 { .gnueabi => "gnueabi", .gnueabihf => "gnueabihf", .gnuf32 => "gnuf32", - .gnuf64 => "gnuf64", .gnusf => "gnusf", .gnux32 => "gnux32", .gnuilp32 => "gnuilp32", @@ -193,7 +188,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 { .msvc => "msvc", .itanium => "itanium", .cygnus => "cygnus", - .coreclr => "coreclr", .simulator => "simulator", .macabi => "macabi", .pixel => "pixel", @@ -236,7 +230,6 @@ pub fn targetOs(os_tag: std.Target.Os.Tag) llvm.OSType { .freebsd => .FreeBSD, .fuchsia => .Fuchsia, .ios => .IOS, - .kfreebsd => .KFreeBSD, .linux => .Linux, .lv2 => .Lv2, .macos => .MacOSX, @@ -246,7 +239,6 @@ pub fn targetOs(os_tag: std.Target.Os.Tag) llvm.OSType { .zos => .ZOS, .haiku => .Haiku, .rtems => .RTEMS, - .nacl => .NaCl, .aix => .AIX, .cuda => .CUDA, .nvcl => .NVCL, @@ -315,8 +307,6 @@ pub fn targetArch(arch_tag: std.Target.Cpu.Arch) llvm.ArchType { .xtensa => .xtensa, .nvptx => .nvptx, .nvptx64 => .nvptx64, - .le32 => .le32, - .le64 => .le64, .amdil => .amdil, .amdil64 => .amdil64, .hsail => .hsail, @@ -12104,8 +12094,6 @@ pub fn initializeLLVMTarget(arch: std.Target.Cpu.Arch) void { .tce, .tcele, .r600, - .le32, - .le64, .amdil, .amdil64, .hsail, |
