Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed May 6, 2024
1 parent 1d4fe4d commit 9999f16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ fn configure_check_cfg() {

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

0 comments on commit 9999f16

Please sign in to comment.