mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
cd4ff3e8fc
output As part of the unification of the debug format and the MIR format, always use `printReg` to print all kinds of registers. Updated the tests using '_' instead of '%noreg' until we decide which one we want to be the default one. Differential Revision: https://reviews.llvm.org/D40421 llvm-svn: 319445
16 lines
475 B
LLVM
16 lines
475 B
LLVM
; RUN: llc -mtriple=thumbv6m-apple-macho %s -relocation-model=static -o - | FileCheck %s
|
|
; RUN: llc -mtriple=thumbv6m-apple-macho %s -relocation-model=pic -o - | FileCheck %s
|
|
|
|
@var = global i8 zeroinitializer
|
|
|
|
declare void @callee(i8*)
|
|
|
|
define void @foo() minsize {
|
|
; CHECK-LABEL: foo:
|
|
; CHECK: ldr {{r[0-7]}}, LCPI0_0
|
|
call void @callee(i8* @var)
|
|
call void asm sideeffect "", "~{r0},~{r1},~{r2},~{r3},~{r4},~{r5},~{r6},~{r7}"()
|
|
call void @callee(i8* @var)
|
|
ret void
|
|
}
|