blob: 1deeb2530f4bf403fb6d32b9ac54da2e63a0f6be [file] [log] [blame]
Tim Northoverc801b4a2014-04-15 14:55:11 +00001// RUN: %clang_cc1 -triple arm64-linux-gnu -target-abi aapcs -ffreestanding -emit-llvm -w -o - %s | FileCheck %s
2
3// AAPCS clause C.8 says: If the argument has an alignment of 16 then the NGRN
4// is rounded up to the next even number.
5
6// CHECK: void @test1(i32 %x0, i128 %x2_x3, i128 %x4_x5, i128 %x6_x7, i128 %sp.coerce)
7typedef union { __int128 a; } Small;
8void test1(int x0, __int128 x2_x3, __int128 x4_x5, __int128 x6_x7, Small sp) {
9}
10
11
12// CHECK: void @test2(i32 %x0, i128 %x2_x3.coerce, i32 %x4, i128 %x6_x7.coerce, i32 %sp, i128 %sp16.coerce)
13void test2(int x0, Small x2_x3, int x4, Small x6_x7, int sp, Small sp16) {
14}
Tim Northover5ffc0922014-04-17 10:20:38 +000015
16// We coerce HFAs into a contiguous [N x double] type if they're going on the
17// stack in order to avoid holes. Make sure we get all of them, and not just the
18// first:
19
20// CHECK: void @test3(float %s0_s3.0, float %s0_s3.1, float %s0_s3.2, float %s0_s3.3, float %s4, [3 x float], [2 x double] %sp.coerce, [2 x double] %sp16.coerce)
21typedef struct { float arr[4]; } HFA;
22void test3(HFA s0_s3, float s4, HFA sp, HFA sp16) {
23}