summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-2977/block.rs
blob: d376e370c72e9184dfe8c06923402263030858fc (plain)
1
2
3
4
5
6
7
8
9
10
11
macro_rules! atomic_bits {
    ($ldrex:expr) => {
        execute(|| {
            asm!($ldrex
                 : "=r"(raw)
                 : "r"(address)
                 :
                 : "volatile");
        })
    };
}