1
Fork 0

rustc_codegen_llvm: Mark items as pub(crate) outside of the llvm module

This commit is contained in:
Daniel Paoliello 2025-02-07 16:42:55 -08:00
parent a9e7b30487
commit 5f29273921
6 changed files with 8 additions and 8 deletions

View file

@ -657,7 +657,7 @@ impl<'tcx> AbiBuilderMethods<'tcx> for Builder<'_, '_, 'tcx> {
}
impl llvm::CallConv {
pub fn from_conv(conv: Conv, arch: &str) -> Self {
pub(crate) fn from_conv(conv: Conv, arch: &str) -> Self {
match conv {
Conv::C
| Conv::Rust