about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/check_consts/check.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-11-17 22:50:14 +0100
committerRalf Jung <post@ralfj.de>2024-11-18 07:47:44 +0100
commit9d4b1b2db497102257c6f372f308492089d689b4 (patch)
treecc7e6e5d5cdb7c521fc0da7f6f7448b31d3350ee /compiler/rustc_const_eval/src/check_consts/check.rs
parent3fb7e441aecc3c054d71eb4d752d06e7776e8888 (diff)
downloadrust-9d4b1b2db497102257c6f372f308492089d689b4.tar.gz
rust-9d4b1b2db497102257c6f372f308492089d689b4.zip
rename rustc_const_stable_intrinsic -> rustc_intrinsic_const_stable_indirect
Diffstat (limited to 'compiler/rustc_const_eval/src/check_consts/check.rs')
-rw-r--r--compiler/rustc_const_eval/src/check_consts/check.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/check_consts/check.rs b/compiler/rustc_const_eval/src/check_consts/check.rs
index ffe32acb316..b6664606ef9 100644
--- a/compiler/rustc_const_eval/src/check_consts/check.rs
+++ b/compiler/rustc_const_eval/src/check_consts/check.rs
@@ -760,7 +760,7 @@ impl<'tcx> Visitor<'tcx> for Checker<'_, 'tcx> {
                         Some(ConstStability { level: StabilityLevel::Stable { .. }, .. }) => {
                             // All good. Note that a `#[rustc_const_stable]` intrinsic (meaning it
                             // can be *directly* invoked from stable const code) does not always
-                            // have the `#[rustc_const_stable_intrinsic]` attribute (which controls
+                            // have the `#[rustc_intrinsic_const_stable_indirect]` attribute (which controls
                             // exposing an intrinsic indirectly); we accept this call anyway.
                         }
                     }