Skip to content

Commit 749d7e2

Browse files
committed
Enable backend inlining
1 parent ffcbf96 commit 749d7e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/intrinsics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2640,7 +2640,7 @@ pub(crate) const fn debug_assertions() -> bool {
26402640
macro_rules! assert_unsafe_precondition {
26412641
($message:expr, ($($name:ident:$ty:ty = $arg:expr),*$(,)?) => $e:expr $(,)?) => {
26422642
{
2643-
#[cfg_attr(not(bootstrap), rustc_no_mir_inline)]
2643+
#[cfg_attr(not(bootstrap), rustc_no_mir_inline, inline)]
26442644
#[rustc_nounwind]
26452645
fn precondition_check($($name:$ty),*) {
26462646
if !$e {

0 commit comments

Comments
 (0)