about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/interpret/machine.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-08-05 17:34:44 +0200
committerRalf Jung <post@ralfj.de>2024-08-06 11:08:12 +0200
commit522af10cccd9c23f5147d123cd6373ae0aa0795d (patch)
tree9d910bedd5ac43d6b9b1cb9850d4b223dd270ab8 /compiler/rustc_const_eval/src/interpret/machine.rs
parent8c7e0e160831866bc1a40691a39455aac21271c0 (diff)
downloadrust-522af10cccd9c23f5147d123cd6373ae0aa0795d.tar.gz
rust-522af10cccd9c23f5147d123cd6373ae0aa0795d.zip
interpret: refactor function call handling to be better-abstracted
Diffstat (limited to 'compiler/rustc_const_eval/src/interpret/machine.rs')
-rw-r--r--compiler/rustc_const_eval/src/interpret/machine.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/machine.rs b/compiler/rustc_const_eval/src/interpret/machine.rs
index bdce8253b2e..7af4e0c285b 100644
--- a/compiler/rustc_const_eval/src/interpret/machine.rs
+++ b/compiler/rustc_const_eval/src/interpret/machine.rs
@@ -37,7 +37,7 @@ pub enum ReturnAction {
     /// took care of everything.
     NoJump,
 
-    /// Returned by [`InterpCx::pop_stack_frame`] when no cleanup should be done.
+    /// Returned by [`InterpCx::pop_stack_frame_raw`] when no cleanup should be done.
     NoCleanup,
 }