aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/aapcs/vfp17.c
blob: 9044ec221fcd84a58e51f3a976e541dab9931a36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Test AAPCS layout (VFP variant) */

/* { dg-do run { target arm*-*-*eabi* } } */
/* { dg-require-effective-target arm_hard_vfp_ok } */
/* { dg-require-effective-target arm32 } */
/* { dg-options "-O -mfpu=vfp -mfloat-abi=hard" } */

#ifndef IN_FRAMEWORK
#define VFP
#define TESTFILE "vfp17.c"

#define PCSATTR __attribute__((pcs("aapcs")))

#include "abitest.h"
#else
  ARG(float, 1.0f, R0)
  ARG(double, 2.0, R2)
  ARG(float, 3.0f, STACK)
  LAST_ARG(double, 4.0, STACK+8)
#endif