Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / PowerPC / ppc64-altivec-abi.ll
blobc0ab39d899e537218058553dc6f0bec4187228ff
1 ; RUN: llc -verify-machineinstrs < %s -mattr=+altivec | FileCheck %s
3 target datalayout = "E-m:e-i64:64-n32:64"
4 target triple = "powerpc64-unknown-linux-gnu"
6 ; Verify that in the 64-bit Linux ABI, vector arguments take up space
7 ; in the parameter save area.
9 define i64 @callee(i64 %a, <4 x i32> %b, i64 %c, <4 x i32> %d, i64 %e) {
10 entry:
11   ret i64 %e
13 ; CHECK-LABEL: callee:
14 ; CHECK: ld 3, 112(1)
16 define void @caller(i64 %x, <4 x i32> %y) {
17 entry:
18   tail call void @test(i64 %x, <4 x i32> %y, i64 %x, <4 x i32> %y, i64 %x)
19   ret void
21 ; CHECK-LABEL: caller:
22 ; CHECK: std 3, 112(1)
24 declare void @test(i64, <4 x i32>, i64, <4 x i32>, i64)