mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-02 16:56:50 +00:00
82ace96a30
This means "memory with offset" and requires very little plumbing to get working. This fixes PR25317. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251280 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
278 B
LLVM
11 lines
278 B
LLVM
; RUN: llc < %s | FileCheck %s
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
|
|
target triple = "armv7--linux-gnueabihf"
|
|
|
|
; CHECK-LABEL: f:
|
|
; CHECK: str lr, [r0]
|
|
define void @f(i32* %p) {
|
|
call void asm sideeffect "str lr, $0", "=*o"(i32* %p)
|
|
ret void
|
|
} |