Skip to content

Commit

Permalink
Rollup merge of #76823 - RalfJung:black-box-warn, r=joshtriplett
Browse files Browse the repository at this point in the history
black_box: silence unused_mut warning when building with cfg(miri)
  • Loading branch information
RalfJung authored Sep 20, 2020
2 parents 4322e1b + 1dd3df6 commit df4e4ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/hint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ pub fn spin_loop() {
#[cfg_attr(not(miri), inline)]
#[cfg_attr(miri, inline(never))]
#[unstable(feature = "test", issue = "50297")]
#[allow(unreachable_code)] // this makes #[cfg] a bit easier below.
#[cfg_attr(miri, allow(unused_mut))]
pub fn black_box<T>(mut dummy: T) -> T {
// We need to "use" the argument in some way LLVM can't introspect, and on
// targets that support it we can typically leverage inline assembly to do
Expand Down

0 comments on commit df4e4ef

Please sign in to comment.