Skip to content

Commit 391bdb3

Browse files
committed
Clarify visibility of several rustc_interface passes
1 parent d8c9dd4 commit 391bdb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_interface/src/passes.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ use std::sync::{Arc, LazyLock};
4444
use std::{env, fs, iter};
4545
use tracing::{info, instrument};
4646

47-
pub fn parse<'a>(sess: &'a Session) -> Result<ast::Crate> {
47+
pub(crate) fn parse<'a>(sess: &'a Session) -> Result<ast::Crate> {
4848
let krate = sess
4949
.time("parse_crate", || {
5050
let mut parser = unwrap_or_emit_fatal(match &sess.io.input {
@@ -643,7 +643,7 @@ pub static DEFAULT_QUERY_PROVIDERS: LazyLock<Providers> = LazyLock::new(|| {
643643
*providers
644644
});
645645

646-
pub fn create_global_ctxt<'tcx>(
646+
pub(crate) fn create_global_ctxt<'tcx>(
647647
compiler: &'tcx Compiler,
648648
mut krate: rustc_ast::Crate,
649649
gcx_cell: &'tcx OnceLock<GlobalCtxt<'tcx>>,

0 commit comments

Comments
 (0)