From 5cb7cac9f230ca2449c9f6553d43af72b3cf87ec Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Tue, 15 Mar 2022 01:30:25 +0000 Subject: [PATCH] Update no_atomic.rs --- no_atomic.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/no_atomic.rs b/no_atomic.rs index e7ad250e1..390019ebd 100644 --- a/no_atomic.rs +++ b/no_atomic.rs @@ -7,6 +7,7 @@ const NO_ATOMIC_CAS: &[&str] = &[ "bpfel-unknown-none", "msp430-none-elf", "riscv32i-unknown-none-elf", + "riscv32im-unknown-none-elf", "riscv32imc-unknown-none-elf", "thumbv4t-none-eabi", "thumbv6m-none-eabi", @@ -49,6 +50,7 @@ const NO_ATOMIC_64: &[&str] = &[ "riscv32gc-unknown-linux-gnu", "riscv32gc-unknown-linux-musl", "riscv32i-unknown-none-elf", + "riscv32im-unknown-none-elf", "riscv32imac-unknown-none-elf", "riscv32imc-unknown-none-elf", "thumbv4t-none-eabi", @@ -66,5 +68,6 @@ const NO_ATOMIC: &[&str] = &[ "avr-unknown-gnu-atmega328", "msp430-none-elf", "riscv32i-unknown-none-elf", + "riscv32im-unknown-none-elf", "riscv32imc-unknown-none-elf", ];