mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
14a7ad6b92
Summary: The backend has no reason to behave like a driver and should generally do as it's told (and error out if it can't) instead of trying to figure out what the API user meant. The default ABI is still derived from the arch component as a concession to backwards compatibility. API-users that previously passed an explicit CPU and a triple that was inconsistent with the CPU (e.g. mips-linux-gnu and mips64r2) may get a different ABI to what they got before. However, it's expected that there are no such users on the basis that CodeGen has been asserting that the triple is consistent with the selected ABI for several releases. API-users that were consistent or passed '' or 'generic' as the CPU will see no difference. Reviewers: sdardis, rafael Subscribers: rafael, dsanders, sdardis, llvm-commits Differential Revision: http://reviews.llvm.org/D21466 llvm-svn: 273557
21 lines
851 B
LLVM
21 lines
851 B
LLVM
; RUN: llc < %s -march=mips -mattr=mips16 | FileCheck %s -check-prefix=M16
|
|
; RUN: llc < %s -march=mips -mcpu=mips2 | FileCheck %s -check-prefix=GP32
|
|
; RUN: llc < %s -march=mips -mcpu=mips32 | FileCheck %s -check-prefix=GP32
|
|
; RUN: llc < %s -march=mips -mcpu=mips32r6 | FileCheck %s -check-prefix=GP32
|
|
; RUN: llc < %s -march=mips -mcpu=mips3 -target-abi n64 | FileCheck %s -check-prefix=GP64
|
|
; RUN: llc < %s -march=mips -mcpu=mips64 -target-abi n64 | FileCheck %s -check-prefix=GP64
|
|
; RUN: llc < %s -march=mips -mcpu=mips64r6 -target-abi n64 | FileCheck %s -check-prefix=GP64
|
|
|
|
declare void @bar(i32*)
|
|
|
|
define void @foo(i32 %sz) {
|
|
; ALL-LABEL: foo:
|
|
|
|
; M16-NOT: addiu $sp, 0 # 16 bit inst
|
|
; GP32-NOT: addiu $sp, $sp, 0
|
|
; GP64-NOT: daddiu $sp, $sp, 0
|
|
%a = alloca i32, i32 %sz
|
|
call void @bar(i32* %a)
|
|
ret void
|
|
}
|