aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/2009-05-18-InlineAsmMem.ll
blob: 5d59fc64d92220a4cf40fd1d7eccb712527da2dd (plain)
1
2
3
4
5
6
7
8
9
; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
; RUN: llc -mtriple=thumb-eabi %s -o - | FileCheck %s
; PR4091

define void @foo(i32 %i, i32* %p) nounwind {
;CHECK: swp r2, r0, [r1]
	%asmtmp = call i32 asm sideeffect "swp $0, $2, $3", "=&r,=*m,r,*m,~{memory}"(i32* %p, i32 %i, i32* %p) nounwind
	ret void
}