Skip to content

Commit

Permalink
Enable backend inlining
Browse files Browse the repository at this point in the history
  • Loading branch information
saethlin committed Feb 14, 2024
1 parent ffcbf96 commit 749d7e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/intrinsics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2640,7 +2640,7 @@ pub(crate) const fn debug_assertions() -> bool {
macro_rules! assert_unsafe_precondition {
($message:expr, ($($name:ident:$ty:ty = $arg:expr),*$(,)?) => $e:expr $(,)?) => {
{
#[cfg_attr(not(bootstrap), rustc_no_mir_inline)]
#[cfg_attr(not(bootstrap), rustc_no_mir_inline, inline)]
#[rustc_nounwind]
fn precondition_check($($name:$ty),*) {
if !$e {
Expand Down

0 comments on commit 749d7e2

Please sign in to comment.