From 4901893721c34234ea8886d121a9c281cce0af3a Mon Sep 17 00:00:00 2001 From: Camille GILLOT Date: Sat, 9 Sep 2023 16:35:49 +0000 Subject: [PATCH] Inline callback. --- compiler/rustc_const_eval/src/interpret/machine.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/rustc_const_eval/src/interpret/machine.rs b/compiler/rustc_const_eval/src/interpret/machine.rs index 82aca3d30a2..0fe99085d67 100644 --- a/compiler/rustc_const_eval/src/interpret/machine.rs +++ b/compiler/rustc_const_eval/src/interpret/machine.rs @@ -441,6 +441,7 @@ fn init_frame_extra( frame: Frame<'mir, 'tcx, Self::Provenance>, ) -> InterpResult<'tcx, Frame<'mir, 'tcx, Self::Provenance, Self::FrameExtra>>; + #[inline(always)] fn cur_span(ecx: &InterpCx<'mir, 'tcx, Self>) -> Span where 'tcx: 'mir,