xref: /llvm-project/llvm/test/CodeGen/ARM/copy-paired-reg.ll (revision bed1c7f061aa12417aa081e334afdba45767b938)
1; RUN: llc < %s -mtriple=armv7-apple-ios -verify-machineinstrs
2; RUN: llc < %s -mtriple=armv7-linux-gnueabi -verify-machineinstrs
3
4define void @f() {
5  %a = alloca i8, i32 8, align 8
6  %b = alloca i8, i32 8, align 8
7
8
9  store atomic i64 0, ptr %a seq_cst, align 8
10  store atomic i64 0, ptr %b seq_cst, align 8
11
12  %e = load atomic i64, ptr %b seq_cst, align 8
13
14  ret void
15}
16