brintos

brintos / llvm-project-archived public Read only

0
0
Text · 338 B · 312c7e2 Raw
12 lines · plain
1; RUN: llc -mtriple=aarch64 < %s | FileCheck %s2 3; Atomics larger than 128-bit are unsupported, and emit libcalls.4define void @test(ptr %a) nounwind {5; CHECK-LABEL: test:6; CHECK: bl __atomic_load7; CHECK: bl __atomic_store8  %1 = load atomic i256, ptr %a seq_cst, align 329  store atomic i256 %1, ptr %a seq_cst, align 3210  ret void11}12