You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
257 B
9 lines
257 B
4 months ago
|
; RUN: llc -mtriple=arm-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
|
||
|
}
|