Skip to content

Commit 3a07213

Browse files
committed
Ah, right, rerun the scripts
1 parent 4b5326b commit 3a07213

3 files changed

+18
-18
lines changed

tests/ui/atomic_ordering_exchange.stderr

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,47 +79,47 @@ LL | let _ = x.compare_exchange(0, 0, Ordering::SeqCst, Ordering::Release);
7979
|
8080
= help: consider using ordering modes `Acquire`, `SeqCst` or `Relaxed` instead
8181

82-
error: compare_exchange's failure ordering may not stronger than the success ordering of `Release`
82+
error: compare_exchange's failure ordering may not be stronger than the success ordering of `Release`
8383
--> $DIR/atomic_ordering_exchange.rs:35:57
8484
|
8585
LL | let _ = x.compare_exchange(0, 0, Ordering::Release, Ordering::Acquire);
8686
| ^^^^^^^^^^^^^^^^^
8787
|
8888
= help: consider using ordering mode `Relaxed` instead
8989

90-
error: compare_exchange's failure ordering may not stronger than the success ordering of `Release`
90+
error: compare_exchange's failure ordering may not be stronger than the success ordering of `Release`
9191
--> $DIR/atomic_ordering_exchange.rs:36:57
9292
|
9393
LL | let _ = x.compare_exchange(0, 0, Ordering::Release, Ordering::SeqCst);
9494
| ^^^^^^^^^^^^^^^^
9595
|
9696
= help: consider using ordering mode `Relaxed` instead
9797

98-
error: compare_exchange's failure ordering may not stronger than the success ordering of `Relaxed`
98+
error: compare_exchange's failure ordering may not be stronger than the success ordering of `Relaxed`
9999
--> $DIR/atomic_ordering_exchange.rs:39:57
100100
|
101101
LL | let _ = x.compare_exchange(0, 0, Ordering::Relaxed, Ordering::SeqCst);
102102
| ^^^^^^^^^^^^^^^^
103103
|
104104
= help: consider using ordering mode `Relaxed` instead
105105

106-
error: compare_exchange's failure ordering may not stronger than the success ordering of `Relaxed`
106+
error: compare_exchange's failure ordering may not be stronger than the success ordering of `Relaxed`
107107
--> $DIR/atomic_ordering_exchange.rs:40:57
108108
|
109109
LL | let _ = x.compare_exchange(0, 0, Ordering::Relaxed, Ordering::Acquire);
110110
| ^^^^^^^^^^^^^^^^^
111111
|
112112
= help: consider using ordering mode `Relaxed` instead
113113

114-
error: compare_exchange's failure ordering may not stronger than the success ordering of `Acquire`
114+
error: compare_exchange's failure ordering may not be stronger than the success ordering of `Acquire`
115115
--> $DIR/atomic_ordering_exchange.rs:43:57
116116
|
117117
LL | let _ = x.compare_exchange(0, 0, Ordering::Acquire, Ordering::SeqCst);
118118
| ^^^^^^^^^^^^^^^^
119119
|
120120
= help: consider using ordering modes `Acquire` or `Relaxed` instead
121121

122-
error: compare_exchange's failure ordering may not stronger than the success ordering of `AcqRel`
122+
error: compare_exchange's failure ordering may not be stronger than the success ordering of `AcqRel`
123123
--> $DIR/atomic_ordering_exchange.rs:44:56
124124
|
125125
LL | let _ = x.compare_exchange(0, 0, Ordering::AcqRel, Ordering::SeqCst);

tests/ui/atomic_ordering_exchange_weak.stderr

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,47 +79,47 @@ LL | let _ = x.compare_exchange_weak(ptr, ptr2, Ordering::SeqCst, Ordering::
7979
|
8080
= help: consider using ordering modes `Acquire`, `SeqCst` or `Relaxed` instead
8181

82-
error: compare_exchange_weak's failure ordering may not stronger than the success ordering of `Release`
82+
error: compare_exchange_weak's failure ordering may not be stronger than the success ordering of `Release`
8383
--> $DIR/atomic_ordering_exchange_weak.rs:37:67
8484
|
8585
LL | let _ = x.compare_exchange_weak(ptr2, ptr, Ordering::Release, Ordering::Acquire);
8686
| ^^^^^^^^^^^^^^^^^
8787
|
8888
= help: consider using ordering mode `Relaxed` instead
8989

90-
error: compare_exchange_weak's failure ordering may not stronger than the success ordering of `Release`
90+
error: compare_exchange_weak's failure ordering may not be stronger than the success ordering of `Release`
9191
--> $DIR/atomic_ordering_exchange_weak.rs:38:67
9292
|
9393
LL | let _ = x.compare_exchange_weak(ptr2, ptr, Ordering::Release, Ordering::SeqCst);
9494
| ^^^^^^^^^^^^^^^^
9595
|
9696
= help: consider using ordering mode `Relaxed` instead
9797

98-
error: compare_exchange_weak's failure ordering may not stronger than the success ordering of `Relaxed`
98+
error: compare_exchange_weak's failure ordering may not be stronger than the success ordering of `Relaxed`
9999
--> $DIR/atomic_ordering_exchange_weak.rs:41:67
100100
|
101101
LL | let _ = x.compare_exchange_weak(ptr, ptr2, Ordering::Relaxed, Ordering::SeqCst);
102102
| ^^^^^^^^^^^^^^^^
103103
|
104104
= help: consider using ordering mode `Relaxed` instead
105105

106-
error: compare_exchange_weak's failure ordering may not stronger than the success ordering of `Relaxed`
106+
error: compare_exchange_weak's failure ordering may not be stronger than the success ordering of `Relaxed`
107107
--> $DIR/atomic_ordering_exchange_weak.rs:42:67
108108
|
109109
LL | let _ = x.compare_exchange_weak(ptr, ptr2, Ordering::Relaxed, Ordering::Acquire);
110110
| ^^^^^^^^^^^^^^^^^
111111
|
112112
= help: consider using ordering mode `Relaxed` instead
113113

114-
error: compare_exchange_weak's failure ordering may not stronger than the success ordering of `Acquire`
114+
error: compare_exchange_weak's failure ordering may not be stronger than the success ordering of `Acquire`
115115
--> $DIR/atomic_ordering_exchange_weak.rs:45:67
116116
|
117117
LL | let _ = x.compare_exchange_weak(ptr2, ptr, Ordering::Acquire, Ordering::SeqCst);
118118
| ^^^^^^^^^^^^^^^^
119119
|
120120
= help: consider using ordering modes `Acquire` or `Relaxed` instead
121121

122-
error: compare_exchange_weak's failure ordering may not stronger than the success ordering of `AcqRel`
122+
error: compare_exchange_weak's failure ordering may not be stronger than the success ordering of `AcqRel`
123123
--> $DIR/atomic_ordering_exchange_weak.rs:46:66
124124
|
125125
LL | let _ = x.compare_exchange_weak(ptr2, ptr, Ordering::AcqRel, Ordering::SeqCst);

tests/ui/atomic_ordering_fetch_update.stderr

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,47 +79,47 @@ LL | let _ = x.fetch_update(Ordering::SeqCst, Ordering::Release, |old| Some(
7979
|
8080
= help: consider using ordering modes `Acquire`, `SeqCst` or `Relaxed` instead
8181

82-
error: fetch_update's failure ordering may not stronger than the success ordering of `Release`
82+
error: fetch_update's failure ordering may not be stronger than the success ordering of `Release`
8383
--> $DIR/atomic_ordering_fetch_update.rs:35:47
8484
|
8585
LL | let _ = x.fetch_update(Ordering::Release, Ordering::Acquire, |old| Some(old + 1));
8686
| ^^^^^^^^^^^^^^^^^
8787
|
8888
= help: consider using ordering mode `Relaxed` instead
8989

90-
error: fetch_update's failure ordering may not stronger than the success ordering of `Release`
90+
error: fetch_update's failure ordering may not be stronger than the success ordering of `Release`
9191
--> $DIR/atomic_ordering_fetch_update.rs:36:47
9292
|
9393
LL | let _ = x.fetch_update(Ordering::Release, Ordering::SeqCst, |old| Some(old + 1));
9494
| ^^^^^^^^^^^^^^^^
9595
|
9696
= help: consider using ordering mode `Relaxed` instead
9797

98-
error: fetch_update's failure ordering may not stronger than the success ordering of `Relaxed`
98+
error: fetch_update's failure ordering may not be stronger than the success ordering of `Relaxed`
9999
--> $DIR/atomic_ordering_fetch_update.rs:39:47
100100
|
101101
LL | let _ = x.fetch_update(Ordering::Relaxed, Ordering::SeqCst, |old| Some(old + 1));
102102
| ^^^^^^^^^^^^^^^^
103103
|
104104
= help: consider using ordering mode `Relaxed` instead
105105

106-
error: fetch_update's failure ordering may not stronger than the success ordering of `Relaxed`
106+
error: fetch_update's failure ordering may not be stronger than the success ordering of `Relaxed`
107107
--> $DIR/atomic_ordering_fetch_update.rs:40:47
108108
|
109109
LL | let _ = x.fetch_update(Ordering::Relaxed, Ordering::Acquire, |old| Some(old + 1));
110110
| ^^^^^^^^^^^^^^^^^
111111
|
112112
= help: consider using ordering mode `Relaxed` instead
113113

114-
error: fetch_update's failure ordering may not stronger than the success ordering of `Acquire`
114+
error: fetch_update's failure ordering may not be stronger than the success ordering of `Acquire`
115115
--> $DIR/atomic_ordering_fetch_update.rs:43:47
116116
|
117117
LL | let _ = x.fetch_update(Ordering::Acquire, Ordering::SeqCst, |old| Some(old + 1));
118118
| ^^^^^^^^^^^^^^^^
119119
|
120120
= help: consider using ordering modes `Acquire` or `Relaxed` instead
121121

122-
error: fetch_update's failure ordering may not stronger than the success ordering of `AcqRel`
122+
error: fetch_update's failure ordering may not be stronger than the success ordering of `AcqRel`
123123
--> $DIR/atomic_ordering_fetch_update.rs:44:46
124124
|
125125
LL | let _ = x.fetch_update(Ordering::AcqRel, Ordering::SeqCst, |old| Some(old + 1));

0 commit comments

Comments
 (0)