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) {
13 ; CHECK-LABEL: callee:
16 define void @caller(i64 %x, <4 x i32> %y) {
18 tail call void @test(i64 %x, <4 x i32> %y, i64 %x, <4 x i32> %y, i64 %x)
21 ; CHECK-LABEL: caller:
22 ; CHECK: std 3, 112(1)
24 declare void @test(i64, <4 x i32>, i64, <4 x i32>, i64)