]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/ARM/2009-05-18-InlineAsmMem.ll
Vendor import of llvm RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
[FreeBSD/FreeBSD.git] / test / CodeGen / ARM / 2009-05-18-InlineAsmMem.ll
1 ; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
2 ; RUN: llc -mtriple=thumb-eabi %s -o - | FileCheck %s
3 ; PR4091
4
5 define void @foo(i32 %i, i32* %p) nounwind {
6 ;CHECK: swp r2, r0, [r1]
7         %asmtmp = call i32 asm sideeffect "swp $0, $2, $3", "=&r,=*m,r,*m,~{memory}"(i32* %p, i32 %i, i32* %p) nounwind
8         ret void
9 }