bolt/deps/llvm-18.1.8/llvm/test/CodeGen/ARM/2009-05-18-InlineAsmMem.ll

9 lines
288 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
; PR4091
define void @foo(i32 %i, ptr %p) nounwind {
;CHECK: swp r2, r0, [r1]
%asmtmp = call i32 asm sideeffect "swp $0, $2, $3", "=&r,=*m,r,*m,~{memory}"(ptr elementtype(i32) %p, i32 %i, ptr elementtype(i32) %p) nounwind
ret void
}