rust/tests/codegen/intrinsics/volatile_order.rs

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

19 lines
479 B
Rust
Raw Normal View History

#![crate_type = "lib"]
#![feature(core_intrinsics)]
use std::intrinsics::*;
pub unsafe fn test_volatile_order() {
let mut a: Box<u8> = Box::new(0);
// CHECK: load volatile
let x = volatile_load(&*a);
// CHECK: load volatile
let x = volatile_load(&*a);
// CHECK: store volatile
volatile_store(&mut *a, 12);
// CHECK: store volatile
unaligned_volatile_store(&mut *a, 12);
// CHECK: llvm.memset.p0
volatile_set_memory(&mut *a, 12, 1)
}