[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / Mips / adjust-callstack-sp.ll
blob32d77ac19ae6b1f225d31d40e772579ee9973182
1 ; RUN: llc < %s -march=mips -mattr=mips16 | FileCheck %s -check-prefix=M16
2 ; RUN: llc < %s -march=mips -mcpu=mips2 | FileCheck %s -check-prefix=GP32
3 ; RUN: llc < %s -march=mips -mcpu=mips32 | FileCheck %s -check-prefix=GP32
4 ; RUN: llc < %s -march=mips -mcpu=mips32r6 | FileCheck %s -check-prefix=GP32
5 ; RUN: llc < %s -march=mips -mcpu=mips3 -target-abi n64 | FileCheck %s -check-prefix=GP64
6 ; RUN: llc < %s -march=mips -mcpu=mips64 -target-abi n64 | FileCheck %s -check-prefix=GP64
7 ; RUN: llc < %s -march=mips -mcpu=mips64r6 -target-abi n64 | FileCheck %s -check-prefix=GP64
9 declare void @bar(i32*)
11 define void @foo(i32 %sz) {
12   ; ALL-LABEL: foo:
14   ; M16-NOT:        addiu     $sp, 0 # 16 bit inst
15   ; GP32-NOT:       addiu     $sp, $sp, 0
16   ; GP64-NOT:       daddiu    $sp, $sp, 0
17   %a = alloca i32, i32 %sz
18   call void @bar(i32* %a)
19   ret void