brintos

brintos / llvm-project-archived public Read only

0
0
Text · 363 B · 187f096 Raw
13 lines · plain
1; RUN: llc -mtriple=bpf < %s | FileCheck %s2; XFAIL: *3; Doesn't currently build, with error 'only small returns supported'.4 5define void @test(ptr %a) nounwind {6; CHECK-LABEL: test:7; CHECK: call __atomic_load_168; CHECK: call __atomic_store_169  %1 = load atomic i128, ptr %a monotonic, align 1610  store atomic i128 %1, ptr %a monotonic, align 1611  ret void12}13