From 6d0b61e2f598c1d1102ea9b6f22c4d0e71e5f967 Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Sun, 3 Apr 2022 20:27:54 +0200 Subject: [PATCH] Mark Location::caller() as #[inline] This function gets compiled to a single register move as it actually gets it's return value passed in as argument. --- library/core/src/panic/location.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/core/src/panic/location.rs b/library/core/src/panic/location.rs index 714e9b73c78..a018ad9eab3 100644 --- a/library/core/src/panic/location.rs +++ b/library/core/src/panic/location.rs @@ -83,6 +83,7 @@ impl<'a> Location<'a> { #[stable(feature = "track_caller", since = "1.46.0")] #[rustc_const_unstable(feature = "const_caller_location", issue = "76156")] #[track_caller] + #[inline] pub const fn caller() -> &'static Location<'static> { crate::intrinsics::caller_location() }