llvm-6502/test/CodeGen/ARM/2009-05-18-InlineAsmMem.ll
2009-09-09 00:09:15 +00:00

8 lines
218 B
LLVM

; RUN: llc < %s -march=arm | grep swp
; PR4091
define void @foo(i32 %i, i32* %p) nounwind {
%asmtmp = call i32 asm sideeffect "swp $0, $2, $3", "=&r,=*m,r,*m,~{memory}"(i32* %p, i32 %i, i32* %p) nounwind
ret void
}