Skip to content

Commit 87a98bd

Browse files
Rollup merge of #158029 - makai410:rpub-update, r=wesleywiser
Rename `project-stable-mir` to `project-rustc-public` Per rust-lang/team#2522
2 parents 0a666a9 + 1ef529d commit 87a98bd

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

compiler/rustc_public/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Our goal is to start publishing `stable_mir` into crates.io.
44
Until then, users will use this as any other rustc crate, by installing
55
the rustup component `rustc-dev`, and declaring `stable-mir` as an external crate.
66

7-
See the StableMIR ["Getting Started"](https://rust-lang.github.io/project-stable-mir/getting-started.html)
7+
See the StableMIR ["Getting Started"](https://rust-lang.github.io/rustc_public/getting-started.html)
88
guide for more information.
99

1010
## Stable MIR Design

compiler/rustc_public/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! The WIP public interface to rustc internals.
22
//!
3-
//! For more information see <https://github.com/rust-lang/project-stable-mir>
3+
//! For more information see <https://github.com/rust-lang/rustc_public>
44
//!
55
//! # Note
66
//!

compiler/rustc_public/src/rustc_internal/pretty.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub fn write_smir_pretty<'tcx, W: io::Write>(tcx: TyCtxt<'tcx>, w: &mut W) -> io
1111
)?;
1212
writeln!(
1313
w,
14-
"// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/project-stable-mir."
14+
"// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/rustc_public."
1515
)?;
1616
let _ = run(tcx, || {
1717
let items = crate::all_local_items();

compiler/rustc_public_bridge/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! This crate is not intended to be invoked directly by users.
66
//! This crate is the public API of rustc that will be invoked by the `rustc_public` crate.
77
//!
8-
//! For more information see <https://github.com/rust-lang/project-stable-mir>
8+
//! For more information see <https://github.com/rust-lang/rustc_public>
99
//!
1010
//! # Note
1111
//!

library/core/src/intrinsics/mir.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//! this feature, turn back. This is *exceptionally* unstable. There is no attempt at all to make
55
//! anything work besides those things which the rustc test suite happened to need. If you make a
66
//! typo you'll probably ICE. Really, this is not the solution to your problems. Consider instead
7-
//! supporting the [stable MIR project group](https://github.com/rust-lang/project-stable-mir).
7+
//! supporting the [rustc public project group](https://github.com/rust-lang/rustc_public).
88
//!
99
//! The documentation for this module describes how to use this feature. If you are interested in
1010
//! hacking on the implementation, most of that documentation lives at

tests/ui/rustc_public-ir-print/async-closure.stdout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// WARNING: This is highly experimental output it's intended for rustc_public developers only.
2-
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/project-stable-mir.
2+
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/rustc_public.
33
fn foo() -> () {
44
let mut _0: ();
55
let _1: i32;

tests/ui/rustc_public-ir-print/basic_function.stdout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// WARNING: This is highly experimental output it's intended for rustc_public developers only.
2-
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/project-stable-mir.
2+
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/rustc_public.
33
fn foo(_1: i32) -> i32 {
44
let mut _0: i32;
55
let mut _2: i32;

tests/ui/rustc_public-ir-print/operands.stdout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// WARNING: This is highly experimental output it's intended for rustc_public developers only.
2-
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/project-stable-mir.
2+
// If you find a bug or want to improve the output open a issue at https://github.com/rust-lang/rustc_public.
33
fn operands(_1: u8) -> () {
44
let mut _0: ();
55
let _2: [u8; 10];

triagebot.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1639,14 +1639,14 @@ dep-bumps = [
16391639
"/compiler/rustc_const_eval/src/interpret" = ["compiler", "mir"]
16401640
"/compiler/rustc_mir_build/src/builder" = ["compiler", "mir"]
16411641
"/compiler/rustc_mir_transform" = ["compiler", "mir", "mir-opt"]
1642-
"/compiler/rustc_public_bridge" = ["project-stable-mir"]
1642+
"/compiler/rustc_public_bridge" = ["project-rustc-public"]
16431643
"/compiler/rustc_parse" = ["compiler", "parser"]
16441644
"/compiler/rustc_parse/src/lexer" = ["compiler", "lexer"]
16451645
"/compiler/rustc_query_impl" = ["compiler", "query-system"]
16461646
"/compiler/rustc_trait_selection" = ["compiler", "types"]
16471647
"/compiler/rustc_traits" = ["compiler", "types"]
16481648
"/compiler/rustc_type_ir" = ["compiler", "types"]
1649-
"/compiler/rustc_public" = ["project-stable-mir"]
1649+
"/compiler/rustc_public" = ["project-rustc-public"]
16501650
"/library/alloc" = ["libs"]
16511651
"/library/alloctests" = ["libs"]
16521652
"/library/core" = ["libs"]

0 commit comments

Comments
 (0)