Auto merge of #981 - RalfJung:atomic, r=RalfJung

also test AcqRel fence

Missing from https://github.com/rust-lang/miri/pull/979
This commit is contained in:
bors 2019-10-09 08:32:58 +00:00
commit d57de39141

View File

@ -69,4 +69,5 @@ fn atomic_fences() {
fence(SeqCst);
fence(Release);
fence(Acquire);
fence(AcqRel);
}