#487 Fix formatting.

This commit is contained in:
Walter Tetzner 2022-02-27 11:36:27 -06:00
parent 8038ea8f98
commit cb20e45395

View File

@ -33,7 +33,10 @@ fn target_has_atomic_cas(target: &str) -> bool {
fn target_has_atomics(target: &str) -> bool {
match &target[..] {
"thumbv4t-none-eabi" | "msp430-none-elf" | "riscv32i-unknown-none-elf" | "riscv32imc-unknown-none-elf" => false,
"thumbv4t-none-eabi"
| "msp430-none-elf"
| "riscv32i-unknown-none-elf"
| "riscv32imc-unknown-none-elf" => false,
_ => true,
}
}