1
Fork 0

Remove Linkage::Appending

It can only be used for certain LLVM internal variables like
llvm.global_ctors which users are not allowed to define.
This commit is contained in:
bjorn3 2025-02-07 14:52:07 +00:00
parent 382e4031c2
commit f68cd90412
6 changed files with 0 additions and 7 deletions

View file

@ -1238,7 +1238,6 @@ fn collect_and_partition_mono_items(tcx: TyCtxt<'_>, (): ()) -> MonoItemPartitio
Linkage::LinkOnceODR => "OnceODR",
Linkage::WeakAny => "WeakAny",
Linkage::WeakODR => "WeakODR",
Linkage::Appending => "Appending",
Linkage::Internal => "Internal",
Linkage::ExternalWeak => "ExternalWeak",
Linkage::Common => "Common",