Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compiler/rustc_public/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Our goal is to start publishing `stable_mir` into crates.io.
Until then, users will use this as any other rustc crate, by installing
the rustup component `rustc-dev`, and declaring `stable-mir` as an external crate.

See the StableMIR ["Getting Started"](https://rust-lang.github.io/project-stable-mir/getting-started.html)
See the StableMIR ["Getting Started"](https://rust-lang.github.io/rustc_public/getting-started.html)

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
See the StableMIR ["Getting Started"](https://rust-lang.github.io/rustc_public/getting-started.html)
See the rustc_public ["Getting Started"](https://rust-lang.github.io/rustc_public/getting-started.html)

guide for more information.

## Stable MIR Design
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_public/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! The WIP public interface to rustc internals.
//!
//! For more information see <https://github.com/rust-lang/project-stable-mir>
//! For more information see <https://github.com/rust-lang/rustc_public>
//!
//! # Note
//!
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_public/src/rustc_internal/pretty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub fn write_smir_pretty<'tcx, W: io::Write>(tcx: TyCtxt<'tcx>, w: &mut W) -> io
)?;
writeln!(
w,
"// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/project-stable-mir."
"// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/rustc_public."
)?;
let _ = run(tcx, || {
let items = crate::all_local_items();
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_public_bridge/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
//! This crate is not intended to be invoked directly by users.
//! This crate is the public API of rustc that will be invoked by the `rustc_public` crate.
//!
//! For more information see <https://github.com/rust-lang/project-stable-mir>
//! For more information see <https://github.com/rust-lang/rustc_public>
//!
//! # Note
//!
Expand Down
2 changes: 1 addition & 1 deletion library/core/src/intrinsics/mir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! this feature, turn back. This is *exceptionally* unstable. There is no attempt at all to make
//! anything work besides those things which the rustc test suite happened to need. If you make a
//! typo you'll probably ICE. Really, this is not the solution to your problems. Consider instead
//! supporting the [stable MIR project group](https://github.com/rust-lang/project-stable-mir).
//! supporting the [rustc public project group](https://github.com/rust-lang/rustc_public).
//!
//! The documentation for this module describes how to use this feature. If you are interested in
//! hacking on the implementation, most of that documentation lives at
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/rustc_public-ir-print/async-closure.stdout
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// WARNING: This is highly experimental output it's intended for rustc_public developers only.
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/project-stable-mir.
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/rustc_public.
fn foo() -> () {
let mut _0: ();
let _1: i32;
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/rustc_public-ir-print/basic_function.stdout
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// WARNING: This is highly experimental output it's intended for rustc_public developers only.
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/project-stable-mir.
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/rustc_public.
fn foo(_1: i32) -> i32 {
let mut _0: i32;
let mut _2: i32;
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/rustc_public-ir-print/operands.stdout
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// WARNING: This is highly experimental output it's intended for rustc_public developers only.
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/project-stable-mir.
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/rustc_public.
fn operands(_1: u8) -> () {
let mut _0: ();
let _2: [u8; 10];
Expand Down
4 changes: 2 additions & 2 deletions triagebot.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1639,14 +1639,14 @@ dep-bumps = [
"/compiler/rustc_const_eval/src/interpret" = ["compiler", "mir"]
"/compiler/rustc_mir_build/src/builder" = ["compiler", "mir"]
"/compiler/rustc_mir_transform" = ["compiler", "mir", "mir-opt"]
"/compiler/rustc_public_bridge" = ["project-stable-mir"]
"/compiler/rustc_public_bridge" = ["project-rustc-public"]
"/compiler/rustc_parse" = ["compiler", "parser"]
"/compiler/rustc_parse/src/lexer" = ["compiler", "lexer"]
"/compiler/rustc_query_impl" = ["compiler", "query-system"]
"/compiler/rustc_trait_selection" = ["compiler", "types"]
"/compiler/rustc_traits" = ["compiler", "types"]
"/compiler/rustc_type_ir" = ["compiler", "types"]
"/compiler/rustc_public" = ["project-stable-mir"]
"/compiler/rustc_public" = ["project-rustc-public"]
"/library/alloc" = ["libs"]
"/library/alloctests" = ["libs"]
"/library/core" = ["libs"]
Expand Down
Loading