authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-06-23 17:51:27+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-07-20 05:08:16+02:00
log5e82e90dbf2a28baa69c3f79c09407e3c2e78ceb
tree08cdb8901e9ecd9b4a2f8043300a279ac1fba2a3
parentaf8205e25ee1781e3747246a45e8c30b65486ab3
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.Target: Remove `coreclr` ABI specifier.

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/933b58d00ffb4b357956c940b37a379bdf891324

4 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 {
742742 .msvc => "msvc",
743743 .itanium => "itanium",
744744 .cygnus => "cygnus",
745 .coreclr => "coreclr",
746745 .simulator => "simulator",
747746 .macabi => "macabi",
748747 .pixel => "pixel",
lib/std/Target.zig-1
......@@ -634,7 +634,6 @@ pub const Abi = enum {
634634 msvc,
635635 itanium,
636636 cygnus,
637 coreclr,
638637 simulator,
639638 macabi,
640639 pixel,
lib/std/zig/LibCDirs.zig-1
......@@ -250,7 +250,6 @@ fn libCGenericName(target: std.Target) [:0]const u8 {
250250 .msvc,
251251 .itanium,
252252 .cygnus,
253 .coreclr,
254253 .simulator,
255254 .macabi,
256255 => unreachable,
src/codegen/llvm.zig-1
......@@ -187,7 +187,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 {
187187 .msvc => "msvc",
188188 .itanium => "itanium",
189189 .cygnus => "cygnus",
190 .coreclr => "coreclr",
191190 .simulator => "simulator",
192191 .macabi => "macabi",
193192 .pixel => "pixel",