1; RUN: llc -mtriple=lanai < %s | FileCheck %s 2 3; Native atomics are unsupported, so all are oversize. 4define void @test(ptr %a) nounwind { 5; CHECK-LABEL: test: 6; CHECK: bt __atomic_load_1 7; CHECK: bt __atomic_store_1 8 %1 = load atomic i8, ptr %a monotonic, align 16 9 store atomic i8 %1, ptr %a monotonic, align 16 10 ret void 11} 12