mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
d66a3fd73b
be in a register. The previous use of ARM address mode 2 was completely arbitrary and inappropriate for Thumb. Radar 7137468. llvm-svn: 84022
10 lines
291 B
LLVM
10 lines
291 B
LLVM
; RUN: llc < %s -march=arm | FileCheck %s
|
|
; RUN: llc < %s -march=thumb | 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
|
|
}
|