Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Mips / cconv / stack-alignment.ll
blobc957e311b1b3a6c82136ca28732a614d5e703836
1 ; RUN: llc -march=mips < %s | FileCheck --check-prefixes=ALL,O32 %s
2 ; RUN: llc -march=mipsel < %s | FileCheck --check-prefixes=ALL,O32 %s
4 ; RUN-TODO: llc -march=mips64 -target-abi o32 < %s | FileCheck --check-prefixes=ALL,O32 %s
5 ; RUN-TODO: llc -march=mips64el -target-abi o32 < %s | FileCheck --check-prefixes=ALL,O32 %s
7 ; RUN: llc -march=mips64 -target-abi n32 < %s | FileCheck --check-prefixes=ALL,N32 %s
8 ; RUN: llc -march=mips64el -target-abi n32 < %s | FileCheck --check-prefixes=ALL,N32 %s
10 ; RUN: llc -march=mips64 -target-abi n64 < %s | FileCheck --check-prefixes=ALL,N64 %s
11 ; RUN: llc -march=mips64el -target-abi n64 < %s | FileCheck --check-prefixes=ALL,N64 %s
13 ; Test the stack alignment for all ABI's and byte orders as specified by
14 ; section 5 of MD00305 (MIPS ABIs Described).
16 define void @local_bytes_1() nounwind {
17 entry:
18         %0 = alloca i8
19         ret void
22 ; ALL-LABEL: local_bytes_1:
23 ; O32:           addiu $sp, $sp, -8
24 ; O32:           addiu $sp, $sp, 8
25 ; N32:           addiu $sp, $sp, -16
26 ; N32:           addiu $sp, $sp, 16
27 ; N64:           addiu $sp, $sp, -16
28 ; N64:           addiu $sp, $sp, 16