mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 21:36:54 +00:00
refactor: Remove `LLVMRustInsertPrivateGlobal` and `define_private_global` Since it can easily be implemented using the existing LLVM C API in terms of `LLVMAddGlobal` and `LLVMSetLinkage` and `define_private_global` was only used in one place. Work towards https://github.com/rust-lang/rust/issues/46437