rust/tests/codegen/noalias-rwlockreadguard.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
445 B
Rust
Raw Normal View History

//@ compile-flags: -O -C no-prepopulate-passes -Z mutable-noalias=yes
#![crate_type = "lib"]
2022-06-20 04:44:25 +00:00
use std::sync::{RwLock, RwLockReadGuard};
// Make sure that `RwLockReadGuard` does not get a `noalias` attribute, because
2022-06-20 04:44:25 +00:00
// the `RwLock` might alias writes after it is dropped.
// CHECK-LABEL: @maybe_aliased(
// CHECK-NOT: noalias
// CHECK-SAME: %_data
#[no_mangle]
2022-06-20 04:44:25 +00:00
pub unsafe fn maybe_aliased(_: RwLockReadGuard<'_, i32>, _data: &RwLock<i32>) {}