| author | |
| committer | |
| log | 5e82e90dbf2a28baa69c3f79c09407e3c2e78ceb |
| tree | 08cdb8901e9ecd9b4a2f8043300a279ac1fba2a3 |
| parent | af8205e25ee1781e3747246a45e8c30b65486ab3 |
| signature |
This was added to LLVM in 2015 for the LLILC project, which was discontinued in
~2018, and subsequently archived in 2022.
https://github.com/dotnet/llilc/commit/933b58d00ffb4b357956c940b37a379bdf8913244 files changed, 0 insertions(+), 4 deletions(-)
lib/compiler/aro/aro/target.zig-1| ... | @@ -742,7 +742,6 @@ pub fn toLLVMTriple(target: std.Target, buf: []u8) []const u8 { | ... | @@ -742,7 +742,6 @@ pub fn toLLVMTriple(target: std.Target, buf: []u8) []const u8 { |
| 742 | .msvc => "msvc", | 742 | .msvc => "msvc", |
| 743 | .itanium => "itanium", | 743 | .itanium => "itanium", |
| 744 | .cygnus => "cygnus", | 744 | .cygnus => "cygnus", |
| 745 | .coreclr => "coreclr", | ||
| 746 | .simulator => "simulator", | 745 | .simulator => "simulator", |
| 747 | .macabi => "macabi", | 746 | .macabi => "macabi", |
| 748 | .pixel => "pixel", | 747 | .pixel => "pixel", |
lib/std/Target.zig-1| ... | @@ -634,7 +634,6 @@ pub const Abi = enum { | ... | @@ -634,7 +634,6 @@ pub const Abi = enum { |
| 634 | msvc, | 634 | msvc, |
| 635 | itanium, | 635 | itanium, |
| 636 | cygnus, | 636 | cygnus, |
| 637 | coreclr, | ||
| 638 | simulator, | 637 | simulator, |
| 639 | macabi, | 638 | macabi, |
| 640 | pixel, | 639 | pixel, |
lib/std/zig/LibCDirs.zig-1| ... | @@ -250,7 +250,6 @@ fn libCGenericName(target: std.Target) [:0]const u8 { | ... | @@ -250,7 +250,6 @@ fn libCGenericName(target: std.Target) [:0]const u8 { |
| 250 | .msvc, | 250 | .msvc, |
| 251 | .itanium, | 251 | .itanium, |
| 252 | .cygnus, | 252 | .cygnus, |
| 253 | .coreclr, | ||
| 254 | .simulator, | 253 | .simulator, |
| 255 | .macabi, | 254 | .macabi, |
| 256 | => unreachable, | 255 | => unreachable, |
src/codegen/llvm.zig-1| ... | @@ -187,7 +187,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 { | ... | @@ -187,7 +187,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 { |
| 187 | .msvc => "msvc", | 187 | .msvc => "msvc", |
| 188 | .itanium => "itanium", | 188 | .itanium => "itanium", |
| 189 | .cygnus => "cygnus", | 189 | .cygnus => "cygnus", |
| 190 | .coreclr => "coreclr", | ||
| 191 | .simulator => "simulator", | 190 | .simulator => "simulator", |
| 192 | .macabi => "macabi", | 191 | .macabi => "macabi", |
| 193 | .pixel => "pixel", | 192 | .pixel => "pixel", |