mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
8 lines
228 B
LLVM
8 lines
228 B
LLVM
|
; RUN: llvm-as < %s | llc -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
|
||
|
}
|