about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorJon Gjengset <jon@thesquareplanet.com>2017-04-05 21:39:43 -0400
committerJon Gjengset <jon@thesquareplanet.com>2017-04-06 03:37:08 -0400
commitf6d262a326b3a44954773fed6983215b62fe4862 (patch)
tree6f2a26ed6b659ef36be4dfd77bdc95681e8341d9 /src/libcore
parent2598e4574e9136690add3cef55fbb8ac7356f3d2 (diff)
Add unstable book entry
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/sync/atomic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs
index 948edda832b..8cf1d1d54a5 100644
--- a/src/libcore/sync/atomic.rs
+++ b/src/libcore/sync/atomic.rs
@@ -1598,7 +1598,7 @@ pub fn fence(order: Ordering) {
 /// [`AcqRel`]: enum.Ordering.html#variant.AcqRel
 /// [`Relaxed`]: enum.Ordering.html#variant.Relaxed
 #[inline]
-#[unstable(feature = "std_compiler_fences", issue = "41091")]
+#[unstable(feature = "compiler_barriers", issue = "41091")]
 pub fn compiler_barrier(order: Ordering) {
     unsafe {
         match order {