about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2022-04-03 20:27:54 +0200
committerbjorn3 <bjorn3@users.noreply.github.com>2022-04-03 20:32:39 +0200
commit6d0b61e2f598c1d1102ea9b6f22c4d0e71e5f967 (patch)
treed2cef236b592bc45b6b94919907ab2c714700bf4
parent15a242a432c9c40a60def102209a5d40900b7b9d (diff)
downloadrust-6d0b61e2f598c1d1102ea9b6f22c4d0e71e5f967.tar.gz
rust-6d0b61e2f598c1d1102ea9b6f22c4d0e71e5f967.zip
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.
-rw-r--r--library/core/src/panic/location.rs1
1 files changed, 1 insertions, 0 deletions
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()
     }