Skip to content

Commit 9999f16

Browse files
committed
fix
1 parent 1d4fe4d commit 9999f16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ fn configure_check_cfg() {
183183

184184
// Build a list of all aarch64 atomic operation functions
185185
let mut aarch_atomic = Vec::new();
186-
for aarch_op in ["cas", "swp", "ldadd", "ldset", "ldeor"] {
186+
for aarch_op in ["cas", "ldadd", "ldclr", "ldeor", "ldset", "swp"] {
187187
for op_size in [1, 2, 4, 8] {
188188
for ordering in ["relax", "acq", "rel", "acq_rel"] {
189189
aarch_atomic.push(format!("__aarch64_{}{}_{}", aarch_op, op_size, ordering));

0 commit comments

Comments
 (0)