You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
851 B
21 lines
851 B
; 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
|
|
}
|